Skip to content

Instantly share code, notes, and snippets.

@davidrautert
Created November 29, 2010 20:53
Show Gist options
  • Save davidrautert/720601 to your computer and use it in GitHub Desktop.
Save davidrautert/720601 to your computer and use it in GitHub Desktop.
makes sure the full path we want to work with exists
function checkFolders($path) {
$bits = explode(DIRECTORY_SEPARATOR, $path);
$sandbox = '';
foreach($bits as $bit) {
$sandbox .= $bit . DIRECTORY_SEPARATOR;
if(!is_dir($sandbox)) {
mkdir($sandbox);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment