You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
954 B
35 lines
954 B
<?php // $Id: mkdirr.php 3305 2005-02-03 12:44:01Z bmol $
|
|
/**
|
|
* Create a directory structure recursively
|
|
*
|
|
* @author Aidan Lister <aidan@php.net>
|
|
* @version 1.0.0
|
|
* @param string $pathname The directory structure to create
|
|
* @return bool Returns TRUE on success, FALSE on failure
|
|
*/
|
|
|
|
function mkdirr($pathname, $mode = null)
|
|
{
|
|
// Check if directory already exists
|
|
if (is_dir($pathname) || empty($pathname)) {
|
|
return true;
|
|
}
|
|
|
|
// Ensure a file does not already exist with the same name
|
|
if (is_file($pathname)) {
|
|
trigger_error('mkdirr() File exists', E_USER_WARNING);
|
|
return false;
|
|
}
|
|
|
|
// Crawl up the directory tree
|
|
$next_pathname = substr($pathname, 0, strrpos($pathname, DIRECTORY_SEPARATOR));
|
|
if (mkdirr($next_pathname, $mode)) {
|
|
if (!file_exists($pathname)) {
|
|
return mkdir($pathname, $mode);
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
?>
|