本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑
在php中,可以利用file_exists()函数来检查一个文件夹是否存在。
file_exists() 函数检查文件或目录(文件夹)是否存在。如果指定的文件或目录存在则返回 true,否则返回 false。
语法:
file_exists(path)
path:必需。规定要检查的路径。
示例:检查img文件夹是否存在:
<?php
header('content-type:text/html;charset=utf-8');
$file = 'img';
if (file_exists($file)) {
echo $file . ' 文件夹 存在!';
} else {
echo $file . ' 文件夹 不存在!';
}
?>