wenD has asked for the wisdom of the Perl Monks concerning the following question:
I get an error when trying to use File::Copy to move a directory to a mounted section of the filesystem.
---------------------------- use File::Copy; my $source_dir = '/home/my/this_dir'; my $destination_dir = '/nfsmount/elsewhere/this_dir'; move("$source_dir", "$destination_dir"); if ( $! ) { # Prints 'Is a directory' (and the move doesn't happen). print $!; } ----------------------------
Is File::Copy the wrong thing to use for this? Or am I just doing something wrong?
20061201 Janitored by Corion: Changed formatting to use code tags instead of PRE tags, as per Writeup Formatting Tips
|
|---|