找出php中是否存在目录

时间:2010-05-25 12:32:53

标签: php mkdir chdir

我想知道目录是否存在。

如果没有,我想创建目录。

我的代码如下:

$da = getdate();
$dat = $da["year"]."-".$da["mon"]."-".$da["mday"];
$m = md5($url)."xml";
if(is_dir($dat))
{
    chdir($dat);
    $fh = fopen($m, 'w');
    fwrite($fh, $xml); 
    fclose($fh);
    echo "yes";
}
else
{
    mkdir($dat,0777,true); 
    chdir($dat);   
    $fh = fopen($m, 'w');   
    fwrite($fh, $xml);    
    fclose($fh); 
    echo "not";
} 

2 个答案:

答案 0 :(得分:7)

使用is_dir检查路径是否存在mkdir目录。

function mkdir_if_not_there($path) {
  if (!is_dir($path)) {
    // Watch out for potential race conditions here
    mkdir($path);
  }
}

答案 1 :(得分:0)

使用is_dir:

$pathname = "/path/to/dir";
if(is_dir($pathname)) {
   // do something
}