function createDir($path){ if (!file_exists($path)){ createDir(dirname($path)); mkdir($path, 0777); } }