如何删除所有子文件夹中的所有文件,除了那些文件名为'whatever.jpg'的PHP文件?

时间:2012-07-17 20:09:29

标签: php file directory filesystems delete-file

删除所有子文件夹所有文件的最快方法除了文件名为'在PHP中的whatever.jpg'

3 个答案:

答案 0 :(得分: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');

答案 1 :(得分: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'));

答案 2 :(得分: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('.');