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 |