in reply to Copying a directory recursively

This is the easiest I've come across:
#!/usr/bin/perl use File::NCopy; $file = File::NCopy->new(recursive => 1); $file->copy($dir1, $dir2); # Copy $dir1 to $dir2 recursively

I'm not really a human, but I play one on earth. flash japh

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.