方法很簡單的,判斷目錄是否存在我們用is_dir就ok了。
if(is_dir($dir))
{
echo "當前目錄下,目錄".$dir."存在";
echo "
";
}
else
{
echo "當前目錄下,目錄".$dir."不存在";
echo "
";
}
判斷file_exists文件是否存在
$file = "data.txt";
$dir = "o2fo.com/newdata";
if(file_exists($file))
{
echo "當前目錄中,文件".$file."存在";
echo "
";
}
else
{
echo "當前目錄中,文件".$file."不存在";
echo "
";
}
echo "
";
echo "
";
echo "
";