How do I copy a directory including sub directories excluding files or directories that match a certain regex on a Windows system?
|
I'd do something like this:
|
|||||
|
|
Another option is File::Xcopy. As the name says, it more-or-less emulates the windows xcopy command, including its filtering and recursive options. From the documentation:
|
|||
|
|
|
If you happen to be on a Unix-like OS and have access to Perl's File::Copy is a bit broken (it doesn't copy permissions on Unix systems, for example), so if you don't want to use your system tools, look at CPAN. Maybe File::Copy::Recursive could be of use, but I don't see any exclude options. I hope somebody else has a better idea. |
|||
|
|
|
I don't know how to do an exclusion with a copy, but you could work something up along the lines of:
|
|||
|
|
|
A classic answer would use '
The ' |
|||
|
|