2

我有一个 txt 文件,其中包含 40.000 个文件路径和文件名,我需要检查它们是否存在。

要检查单个文件,我使用以下代码:

$filename='/home/httpd/html/domain.com/htdocs/car/002.jpg';
if (file_exists($filename)) {
    echo "The file $filename exists";
} else {
    echo "The file $filename does not exist";
}

该代码有效。

现在我想遍历 txt 文件,该文件每行包含一个路径

/home/httpd/html/domain.com/htdocs/car/002.jpg
/home/httpd/html/domain.com/htdocs/car/003.jpg
/home/httpd/html/domain.com/htdocs/car/004.jpg
...

我尝试使用此代码遍历 txt 文件,但我得到所有文件的“文件不存在”。

$file = "list.txt";
$parts = new SplFileObject($file);
foreach ($parts as $filename) {
    if (file_exists($filename)) { echo "The file $filename exists"; } 
    else { echo "The file $filename does not exist"; }      
}
4

2 回答 2

2

您的list.txt文件在每行末尾都有一个换行符。例如,您首先需要$filename在使用之前将其修剪掉file_exists()

<?php
$file = "list.txt";
$parts = new SplFileObject($file);
foreach ($parts as $filename) {
    $fn = trim($filename);
    if (file_exists($fn)) {
        echo "The file $fn exists\n";
    } else {
        echo "The file $fn does not exist\n";
    }
}
于 2017-12-20T12:01:30.377 回答
0

当您加载文件时,请尝试通过explode() 函数将字符串分解为数组。然后您将能够使用 file_exist 函数进行验证

于 2017-12-20T11:54:51.570 回答