php判断文件或目录(文件夹)是否存在
php库自带有判断文件或目录是否存在的函数,file_exists判断文件是否存在,is_dir判断目录(文件夹)是否存在。具体示例如下:
$file='index.php';
$dir='www.phpernote.com/wwwroot/';
if(file_exists($dir.$file)){
echo '文件'.$file.'存在';
}else{
echo '文件'.$file.'不存在';
}
if(is_dir($dir)){
echo '目录'.$dir.'存在';
}else{
echo '目录'.$dir.'不存在';
}
您可能感兴趣的文章
- php清空(删除)指定目录下的文件,不删除目录文件夹的方法
- php获取目录所有文件并将结果保存到数组的程序
- php判断远程文件是否存在的办法
- linux chmod(文件或文件夹权限设定)命令参数及用法详解
- php判断函数,类,类方法是否存在
- linux删除文件,文件夹命令rm 命令详解
- PHP判断上传文件类型最安全,最真实的解决办法
- php判断字符串是否全英文,纯中文,中英文组合的方法
http://www.bkjia.com/PHPjc/982049.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/982049.htmlTechArticlephp判断文件或目录(文件夹)是否存在 php库自带有判断文件或目录是否存在的函数,file_exists判断文件是否存在,is_dir判断目录(文件夹)是...
Stellungnahme:Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn