Re: Is there a GNU-like "mkdir -p" method in Perl?



Hi Sean

You could use following module:

use File::Path;
mkpath(['/foo/bar/baz', 'blurfl/quux'], 1, 0711);

Marcel

.