in reply to Insert extension to filename
There's also the handy rename() function, but is known to have various platform issues. See the File::Copy docs for more info.use File::Copy qw(move); my $extension = "12345"; move("file", "file.$extension");
_________
broquaint
|
|---|