views:

106

answers:

2

I need to copy entire directory to some location.

What is the best way to do so ? File::Copy copies only file by file as I saw it.

By the way I work under Windows.

Thanks for help.

+3  A: 

A quick google search for "perl copy directory file::" finds

Perl::Copy::Recursive

Looks what you're after.

Adam Luchjenbroers
+5  A: 

Maybe look into File::Copy::Recursive.

unwind