in reply to Insert extension to filename

How about
use File::Copy qw(move); my $extension = "12345"; move("file", "file.$extension");
There's also the handy rename() function, but is known to have various platform issues. See the File::Copy docs for more info.
HTH

_________
broquaint