in reply to Making directories from path
Take a look at File::Path, especially the mkpath routine.
use strict; use File::Path; my $directory = '/tmp/some/path'; mkpath($directory);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Making directories from path
by Nelly (Novice) on Apr 14, 2004 at 13:12 UTC |