您的位置:首页 > 新闻 > 热点要闻 > php判断某个目录下是否存在文件

php判断某个目录下是否存在文件

2025/1/6 22:31:38 来源:https://blog.csdn.net/qq_39634880/article/details/140712797  浏览:    关键词:php判断某个目录下是否存在文件
/*** 判断字符串是否以什么结尾* @param  String  $haystack 字符串* @param  String  $needle 结尾* @return Boolean*/
function endWith($haystack, $needle) {$length = strlen($needle);if ($length == 0) {return true;}return (substr($haystack, -$length) === $needle);
}
/*** 判断目录下是否存在文件* @param  String  $path 目录路径* @param  String  $recursive 是否递归(false情况下只判断第一级目录,true递归目录下所有文件判断)* @return Boolean*/
function dirExistFile($path,$recursive = false) {if (!is_dir($path)) {return false;}// 目录相隔符号,linux是 /,window一般是\if(!(endWith($path, '/') || endWith($path, '\\'))){$path .= '/';}if($recursive){// 递归遍历目录$files = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path),\RecursiveIteratorIterator::LEAVES_ONLY);$isExistFile = false;foreach ($files as $file) {if ($file->isFile()) {$isExistFile = true;break;}}return $isExistFile;}else{$files = scandir($path);// 删除  "." 和 ".."unset($files[0]);unset($files[1]);$isExistFile = false;foreach ($files as $fileName) {$fileNamePath = $path.$fileName;if(is_file($fileNamePath)){$isExistFile = true;break;}}return $isExistFile;}
}var_dump(dirExistFile('C:\test',true));

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com