如何获取文件夹下的文件名

如何获取文件夹下的文件名

本文介绍了如何获取文件夹下的文件名?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我的目录如下:

ABC
|_ a1.txt
|_ a2.txt
|_ a3.txt
|_ a4.txt
|_ a5.txt

我如何使用PHP将这些文件名获取到一个数组中,但仅限于特定的文件扩展名而忽略目录?

How can I use PHP to get these file names to an array, limited to a specific file extension and ignoring directories?

推荐答案

您可以使用 glob()函数:

示例01:

<?php
  // read all files inside the given directory
  // limited to a specific file extension
  $files = glob("./ABC/*.txt");
?>

示例02:

<?php
  // perform actions for each file found
  foreach (glob("./ABC/*.txt") as $filename) {
    echo "$filename size " . filesize($filename) . "\n";
  }
?>

示例03:使用 RecursiveIteratorIterator

Example 03: Using RecursiveIteratorIterator

<?php
foreach(new RecursiveIteratorIterator( new RecursiveDirectoryIterator("../")) as $file) {
  if (strtolower(substr($file, -4)) == ".txt") {
        echo $file;
  }
}
?>

这篇关于如何获取文件夹下的文件名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 13:37