in reply to how to copy source folder excluding specific set of sub folder from parent folder

There might be some way to do this using File::Copy::Recursive but I could not spot it in the documentation.

Contrarily, it is certainly possible with File::Rsync instead. This gives you most of the goodies available in rsync but with a Perlish interface so you can do both local and remote tree copies with exclusions.

  • Comment on Re: how to copy source folder excluding specific set of sub folder from parent folder

Replies are listed 'Best First'.
Re^2: how to copy source folder excluding specific set of sub folder from parent folder
by mrityunjaynath (Acolyte) on Aug 09, 2016 at 08:46 UTC

    thanks hippo....will look into the material link you provided and try implement it and.... will reply soon