in reply to copying files through modules
If all you are trying to do is copy a file from one disk location to another, you could use the File::Copy module which is included in the Perl base distribution:
use File::Copy; copy("file1","file2") or die "Copy failed: $!";
|
|---|