How to move a file using Perl? - Perl Views : 290
Tagged in : Perl
Send mail vote down 0 vote down 0
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 .