Create Dir Path
Date : June 21, 2003
To create a directory path programatically:
use File::Path; mkpath "/usr/local/apache/htdocs/articles/2003";
This will create the 2003 directory and all parent directories as needed. This is the same as mkdir -p
command.
Tags:
Perl