在目录中查找文件

时间:2011-05-11 05:11:21

标签: php list dir

我有一个包含大量文件的目录:

pic_1_79879879879879879.jpg
pic_1_89798798789798789.jpg
pic_1_45646545646545646.jpg
pic_2_12345678213145646.jpg
pic_3_78974565646465645.jpg
etc...

我只需要列出pic_1_文件。知道我怎么办? 提前谢谢。

5 个答案:

答案 0 :(得分:9)

使用glob()功能

foreach (glob("directory/pic_1_*") as $filename) {
  echo "$filename";
}

只需将glob调用中的directory更改为正确的路径。

这一切都是一次性完成而不是抓取文件列表然后过滤它们。

答案 1 :(得分:4)

opend目录功能可以帮助你

$dir ="your path here";

$filetoread ="pic_1_";
    if (is_dir($dir)) {
        if ($dh = opendir($dir)) {
            while (($file = readdir($dh)) !== false) {
               if (strpos($file,$filetoread) !== false)
                echo "filename: $file : filetype: " . filetype($dir . $file) . "\n";
            }
            closedir($dh);
        }
    }
好运请看php.net opendir

答案 2 :(得分:4)

这是glob()的用途:

  

glob - 查找与模式匹配的路径名

示例:

foreach (glob("pic_1*.jpg") as $file)
{
    echo $file;
}

答案 3 :(得分:1)

使用scandir列出目录中的所有文件,然后使用preg_grep获取与您要查找的模式匹配的文件列表。

答案 4 :(得分:1)

这是手册中的一个样本

http://nz.php.net/manual/en/function.readdir.php

<?php
if ($handle = opendir('.')) {
    while (false !== ($file = readdir($handle))) {
        if ($file != "." && $file != "..") {
            echo "$file\n";
        }
    }
    closedir($handle);
}
?>

您可以修改该代码以测试文件名以查看它是否以pic_1_开头 使用这样的东西

if (substr($file, 0, 6) == 'pic_1_')

substr

的手动参考

http://nz.php.net/manual/en/function.substr.php