I'm using File::Copy::Recursive::dircopy( $original_dirname, $new_dirname ) or die $!;
to copy a read-only directory from within a Perl script. I get a Permission denied
error.
I can see that $new_dirname
is created, but is marked as read only (like the original directory). Maybe this prevents from the content to be copied into it?..