in reply to move the file to other folder

#!/usr/bin/perl -w use strict; use File::Copy; my $source = "/original/dir/some_file"; my $dest = "/other/directory/"; move($source, $dest) or die "Error moving file: $!\n";


-- ar0n | Just Another Perl Joe