验证是否存在以文件夹中选择的名称开头的文件。 (PHP)

时间:2016-02-14 05:25:11

标签: php file

我有一个名为myfilesc/myfiles)的文件夹,我想验证此文件夹中是否包含以名称filesearch_开头的文件。

在C:目录中我有:

files.txt
filesearch_232142.xls  //TRUE in this case
filesearch_12.pdf   //TRUE in this case
fdsf.php

搜索filesearch_结果应为true。如果没有,则应为false。我研究了glob,但不明白如何设置glob模式函数。

1 个答案:

答案 0 :(得分:0)

我只是使用PHP ReadDir来查看文件是否存在:

<?php
$dir = "c:/myfiles";

// Open a directory, and read its contents
if (is_dir($dir)){
  if ($dh = opendir($dir)){
    while (($file = readdir($dh)) !== false){
      if (substr($file,0,11) == "filesearch_") {
         // file exists
    }
    closedir($dh);
  }
}
?>