in reply to how to create the path automatically
use File::Path qw(mkpath); my $path = 'path/to/create'; mkpath($path) unless -e $path;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to create the path automatically
by rovf (Priest) on Jun 18, 2009 at 12:49 UTC | |
|
Re^2: how to create the path automatically
by baxy77bax (Deacon) on Jun 18, 2009 at 12:56 UTC | |
by holli (Abbot) on Jun 18, 2009 at 20:57 UTC |