http://www.perlmonks.org?node_id=1080765


in reply to Re: Recursive directories
in thread Recursive directories

Hi,

be careful. You probably get what you don't want. Jenda explained it very nice. When you do the following assuming you have the correct rights:

use File::Path 'make_path'; File::Path->make_path('huhu');

you create two directories: File::Path and huhu. Try it with:

File::Path->make_path('huhu', { verbose => 1});

after removing the newly created directories in you test cwd.

McA