How to move a file using Perl? - Perl Views : 316
Tagged in : Perl
0 0
Send mail
You can move a file with Perl with the File::Copy module (yes, it also handles "move").

Example:

use File::Copy;

$original_file = 'original-filename.txt';
$new_file = 'new-filename.txt';

# the perl file move function
move($original_file, $new_file) or die "The move operation failed: $!";
By Nithya, On - 2010-02-04



    Login to add Comments .