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

Replies are listed 'Best First'.
Re^3: Recursive directories
by cord-bin (Friar) on Apr 03, 2014 at 12:23 UTC
    Yes, you are right, it indeed created in a strage way two folders and is not what I meant as I didn't want the directory File::Path. Good to know, thank you for your point!