删除所有子文件夹中所有文件的最快方法是什么,除了那些在 PHP 中文件名为“whatever.jpg”的文件?
问问题
811 次
3 回答
3
为什么不使用迭代器?这是经过测试的:
function run($baseDir, $notThis)
{
foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($baseDir), RecursiveIteratorIterator::LEAVES_ONLY) as $file) {
if ($file->isFile() && $file->getFilename() != $notThis) {
@unlink($file->getPathname());
}
}
}
run('/my/path/base', 'do_not_cancel_this_file.jpg');
于 2012-07-17T20:41:36.087 回答
1
这应该是您正在寻找的,$but
是一个包含异常的数组。不确定它是否是最快的,但它是最常见的目录迭代方式。
function rm_rf_but ($what, $but)
{
if (!is_dir($what) && !in_array($what,$but))
@unlink($what);
else
{
if ($dh = opendir($what))
{
while(($item = readdir($dh)) !== false)
{
if (in_array($item, array_merge(array('.', '..'),$but)))
continue;
rm_rf_but($what.'/'.$item, $but);
}
}
@rmdir($what); // remove this if you dont want to delete the directory
}
}
示例使用:
rm_rf_but('.', array('notme.jpg','imstayin.png'));
于 2012-07-17T20:19:05.483 回答
0
未经测试:
function run($baseDir) {
$files = scandir("{$baseDir}/");
foreach($files as $file) {
$path = "{$badeDir}/{$file}";
if($file != '.' && $file != '..') {
if(is_dir($path)) {
run($path);
} elseif(is_file($path)) {
if(/* here goes you filtermagic */) {
unlink($path);
}
}
}
}
}
run('.');
于 2012-07-17T20:15:16.760 回答