要使用 PHP 的 file_exists()
函數(shù)在目錄中查找文件,請遵循以下步驟:
search_file.php
)。<?php
// 指定要搜索的目錄
$directory = '/path/to/your/directory';
// 指定要查找的文件名
$filename = 'yourfile.txt';
// 拼接完整的文件路徑
$filepath = $directory . DIRECTORY_SEPARATOR . $filename;
// 使用 file_exists() 函數(shù)檢查文件是否存在
if (file_exists($filepath)) {
echo "文件 {$filename} 存在于目錄 {$directory} 中";
} else {
echo "文件 {$filename} 不存在于目錄 {$directory} 中";
}
?>
/path/to/your/directory
更改為實際目錄路徑,將 yourfile.txt
更改為要查找的文件名。這個腳本會檢查指定的文件是否存在于指定的目錄中,并輸出相應的結果。