要使用 PHP 的 file_exists()
函数在目录中查找文件,请遵循以下步骤:
search_file.php
)。<?php
// 指定要搜索的目录
$directory = '/path/to/your/directory';
// 指定要查找的文件名
$filename = 'yourfile.txt';
// 拼接完整的文件路径
$filepath = $directory . DIRECTORY_SEPARATOR . $filename;
// 使用 file_exists() 函数检查文件是否存在
if (file_exists($filepath)) {
echo "文件 {$filename} 存在于目录 {$directory} 中";
} else {
echo "文件 {$filename} 不存在于目录 {$directory} 中";
}
?>
/path/to/your/directory
更改为实际目录路径,将 yourfile.txt
更改为要查找的文件名。这个脚本会检查指定的文件是否存在于指定的目录中,并输出相应的结果。