不存在目录则创建

function mkFolder($path)
{
    if(!is_readable($path))
    {
        is_file($path) or mkdir($path,0700);
    }
}


你可能感兴趣的:(不存在目录则创建)