hi all,
does anyone have a function to recursively create directories?
heres what I have so far:
$dir = "dir1/dir2/dir3/dir4";
$dir_array = explode("/",$dir);
foreach($dir_array as $current_dir) {
if(! is_dir($DOCUMENT_ROOT."/".$current_dir) ) {
mkdir($DOCUMENT_ROOT."/".$current_dir,0700);
}
}
which works, but this will only create these dirs off the document
root, not recursivley underneth one another. im getting stuck on how
to remember what directory has been created and travel down from there.
can anyone help a brother out?
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]