gpt4 book ai didi

php 获取所有子目录和所有文件的列表

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:18:44 25 4
gpt4 key购买 nike

在 php.ini 中获取给定目录下的所有子目录列表和所有文件的另一个列表的最佳方法是什么?只要我可以从 php 中使用它(例如 c/java/python/... 程序),我就可以使用非纯 php 代码。比纯 递归 更快的东西,某种语言中内置的东西(因为这些东西往往很快。)

最佳答案

看看 RecursiveDirectoryIterator :

foreach (new RecursiveDirectoryIterator('yourDir') as $file) {
// you don't want the . and .. dirs, do you?
if ($file->isDot()) {
continue;
}

if ($file->isDir()) {
// dir
} else {
// file
}
}

关于php 获取所有子目录和所有文件的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8465813/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com