
Jasmine
Administrator
Dec 10, 2002, 9:24 AM
Post #2 of 3
(316 views)
|
|
Re: [benchivers] Copying Folders
[In reply to]
|
Can't Post
|
|
Perhaps [url=http://search.cpan.org/author/MZSANFORD/File-NCopy-0.33/lib/File/NCopy.pm]File::NCopy will work? I haven't tried it, but the docs look like it'll do just what you need it to.
use File::NCopy qw(copy); copy "file","other_file"; copy "file1","file2","file3","directory"; # we want to copy the directory recursively copy \1,"directory1","directory2"; copy \1,"file1","file2","directory1","file3","directory2","file4", "directory";
|