使用PHP从文件夹中删除所有文件?


306

例如,我有一个名为“ Temp”的文件夹,我想使用PHP删除或刷新此文件夹中的所有文件。我可以这样做吗?


14
将此问题标记为重复之前,在下面对其进行了解答是一件好事。下面的答案比链接的答案要好得多。加上问题不同,这个问题要求清空目录,而不是删除。
巴特·伯格

1
是的,这是一个不同的问题,得出了不同的答案。不应将其标记为重复项。
丹尼尔·宾汉

Answers:


638
$files = glob('path/to/temp/*'); // get all file names
foreach($files as $file){ // iterate files
  if(is_file($file))
    unlink($file); // delete file
}

如果要删除“隐藏”文件(如.htaccess),则必须使用

$files = glob('path/to/temp/{,.}*', GLOB_BRACE);

4
另外还有DirectoryIterator或DirectoryRecursiveIterator。
尤金(Eugene)

6
尽管很明显,但我提到过,例如,“ path / to / temp / *。txt”将仅删除txt文件,依此类推。
2015年

这也适用于相对路径吗?因此,假设完整路径为“ / var / www / html / folder_and_files_to_delete /”,而删除脚本位于“ /var/www/html/delete_folders_and_files.php”中。我可以仅将“ folder_and_files_to_delete”作为路径吗?
yoano '16

1
@yoano是的,只要相对路径正确即可。
2016年

如果目录中包含成千上万个文件,可以使用glob吗?
Dave Heq

260

如果你想删除一切从文件夹(包括子文件夹)使用这个组合array_mapunlink以及glob

array_map( 'unlink', array_filter((array) glob("path/to/temp/*") ) );

此调用还可以处理空目录(感谢提示,@ mojuba!)


33
最好的答案,谢谢。为了避免glob("...") ?: []发出通知,我也愿意这样做(PHP 5.4+),因为对于空目录glob()返回false
mojuba

14
它会删除当前文件夹中的所有文件,但会为子文件夹返回警告,并且不会删除它们。
六点六

2
结合Stichoza和mojuba的答案:array_map('unlink', ( glob( "path/to/temp/*" ) ? glob( "path/to/temp/*" ) : array() ) );
Ewout

7
@Ewout:即使我们将Stichoza和Moujuba的答案结合起来,因为您的给定对子文件夹返回相同的警告,但不会删除它们
Sulthan Allaudeen 2014年

3
不幸的是,这不会删除子文件夹。
tmarois

92

这是使用标准PHP库(SPL)的更现代的方法。

$dir = "path/to/directory";
$di = new RecursiveDirectoryIterator($dir, FilesystemIterator::SKIP_DOTS);
$ri = new RecursiveIteratorIterator($di, RecursiveIteratorIterator::CHILD_FIRST);
foreach ( $ri as $file ) {
    $file->isDir() ?  rmdir($file) : unlink($file);
}
return true;

1
当您没有SSH访问权限并且FTP需要花几个小时来递归删除许多文件和文件夹时,这很好地工作了……通过这些行,我在不到3秒的时间内删除了35000个文件!
guari

对于PHP 7.1用户:必须使用$ file-> getRealPath()代替$ file。否则,PHP将给您一个错误,指出取消链接需要一个路径,而不是SplFileInfo的实例。
KeineMaster

68
foreach (new DirectoryIterator('/path/to/directory') as $fileInfo) {
    if(!$fileInfo->isDot()) {
        unlink($fileInfo->getPathname());
    }
}

它应该是unlink('/ path / to / directory /'.$ fileInfo-> getFilename()); 因为取消链接会占用路径。很好的答案。
Vic

8
您甚至可以取消链接($ fileInfo-> getPathname()); 这将为您提供文件的完整路径。php.net/manual/en/directoryiterator.getpathname.php
Josh Holloway

'DirectoryIterator'也不会遍历子目录吗?如果是这样,在这种情况下,“取消链接”将产生警告。循环的主体不应该更像Yamiko的答案,而是在调用“ unlink”之前检查每个条目是否是文件吗?
安德烈亚斯·林纳特

19

来自http://php.net/unlink的这段代码:

/**
 * Delete a file or recursively delete a directory
 *
 * @param string $str Path to file or directory
 */
function recursiveDelete($str) {
    if (is_file($str)) {
        return @unlink($str);
    }
    elseif (is_dir($str)) {
        $scan = glob(rtrim($str,'/').'/*');
        foreach($scan as $index=>$path) {
            recursiveDelete($path);
        }
        return @rmdir($str);
    }
}


11

参见readdirunlink

<?php
    if ($handle = opendir('/path/to/files'))
    {
        echo "Directory handle: $handle\n";
        echo "Files:\n";

        while (false !== ($file = readdir($handle)))
        {
            if( is_file($file) )
            {
                unlink($file);
            }
        }
        closedir($handle);
    }
?>

10

假设您有一个包含很多文件的文件夹,将它们全部读取,然后分两步删除,则执行的不是这样。我相信删除文件最有效的方法是仅使用系统命令。

例如在linux上,我使用:

exec('rm -f '. $absolutePathToFolder .'*');

如果您要递归删除而无需编写递归函数,则使用此方法

exec('rm -f -r '. $absolutePathToFolder .'*');

对于PHP支持的任何操作系统,都存在相同的确切命令。请记住,这是删除文件的一种有效方式。在运行此代码之前,必须检查并保护$ absolutePathToFolder,并且必须授予权限。


2
如果此方法$absolutePatToFolder为空,则使用此方法不安全
Lawrence Cherone

@LawrenceCherone其他替代方案是否更安全?
robsch

3
@LawrenceCherone我希望现在没有人以root权限运行php。说真的,我希望输入是“安全的”,因为上述所有功能。
Dario Corno

在www或www-data不是所有者的开发环境中,投票最多的解决方案不起作用。由服务器管理员决定是否设置了正确的文件夹权限。EXEC是想干一个宝贵的工具,并以极大的动力等stackoverflow.com/a/2765171/418974
基督教Bonato

@LawrenceCherone,您完全正确,我的回答是针对非常特殊的情况,仅出于性能方面的考虑。根据您的笔记修改了我的答案。
达里奥·科诺


4

另一个解决方案:此类删除子目录中的所有文件,子目录和文件。

class Your_Class_Name {
    /**
     * @see http://php.net/manual/de/function.array-map.php
     * @see http://www.php.net/manual/en/function.rmdir.php 
     * @see http://www.php.net/manual/en/function.glob.php
     * @see http://php.net/manual/de/function.unlink.php
     * @param string $path
     */
    public function delete($path) {
        if (is_dir($path)) {
            array_map(function($value) {
                $this->delete($value);
                rmdir($value);
            },glob($path . '/*', GLOB_ONLYDIR));
            array_map('unlink', glob($path."/*"));
        }
    }
}

4

通过确保未删除脚本本身,unlinkr函数以递归方式删除给定路径中的所有文件夹和文件。

function unlinkr($dir, $pattern = "*") {
    // find all files and folders matching pattern
    $files = glob($dir . "/$pattern"); 

    //interate thorugh the files and folders
    foreach($files as $file){ 
    //if it is a directory then re-call unlinkr function to delete files inside this directory     
        if (is_dir($file) and !in_array($file, array('..', '.')))  {
            echo "<p>opening directory $file </p>";
            unlinkr($file, $pattern);
            //remove the directory itself
            echo "<p> deleting directory $file </p>";
            rmdir($file);
        } else if(is_file($file) and ($file != __FILE__)) {
            // make sure you don't delete the current script
            echo "<p>deleting file $file </p>";
            unlink($file); 
        }
    }
}

如果要删除放置此脚本的所有文件和文件夹,请按以下方式调用它

//get current working directory
$dir = getcwd();
unlinkr($dir);

如果您只想删除php文件,请按以下方式调用它

unlinkr($dir, "*.php");

您也可以使用任何其他路径删除文件

unlinkr("/home/user/temp");

这将删除home / user / temp目录中的所有文件。


3

发布用于复制,移动,删除,计算大小等的通用文件和文件夹处理类,该类可以处理单个文件或一组文件夹。

https://gist.github.com/4689551

使用方法:

要复制(或移动)单个文件或一组文件夹/文件:

$files = new Files();
$results = $files->copyOrMove('source/folder/optional-file', 'target/path', 'target-file-name-for-single-file.only', 'copy');

删除路径中的单个文件或所有文件和文件夹:

$files = new Files();
$results = $files->delete('source/folder/optional-file.name');

计算单个文件或一组文件夹中的一组文件的大小:

$files = new Files();
$results = $files->calculateSize('source/folder/optional-file.name');

1
 <?
//delete all files from folder  & sub folders
function listFolderFiles($dir)
{
    $ffs = scandir($dir);
    echo '<ol>';
    foreach ($ffs as $ff) {
        if ($ff != '.' && $ff != '..') {
            if (file_exists("$dir/$ff")) {
                unlink("$dir/$ff");
            }
            echo '<li>' . $ff;
            if (is_dir($dir . '/' . $ff)) {
                listFolderFiles($dir . '/' . $ff);
            }
            echo '</li>';
        }
    }
    echo '</ol>';
}
$arr = array(
    "folder1",
    "folder2"
);
for ($x = 0; $x < count($arr); $x++) {
    $mm = $arr[$x];
    listFolderFiles($mm);
}
//end
?> 

1

对我来说,readdir最好的解决方案是一种魅力。使用时glob,该功能在某些情况下失败。

// Remove a directory recursively
function removeDirectory($dirPath) {
    if (! is_dir($dirPath)) {
        return false;
    }

    if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
        $dirPath .= '/';
    }

    if ($handle = opendir($dirPath)) {

        while (false !== ($sub = readdir($handle))) {
            if ($sub != "." && $sub != ".." && $sub != "Thumb.db") {
                $file = $dirPath . $sub;

                if (is_dir($file)) {
                    removeDirectory($file);
                } else {
                    unlink($file);
                }
            }
        }

        closedir($handle);
    }

    rmdir($dirPath);
}

0

我更新了@Stichoza的答案,以通过子文件夹删除文件。

function glob_recursive($pattern, $flags = 0) {
    $fileList = glob($pattern, $flags);
    foreach (glob(dirname($pattern).'/*', GLOB_ONLYDIR|GLOB_NOSORT) as $dir) {
        $subPattern = $dir.'/'.basename($pattern);
        $subFileList = glob_recursive($subPattern, $flags);
        $fileList = array_merge($fileList, $subFileList);
    }
    return $fileList;
}

function glob_recursive_unlink($pattern, $flags = 0) {
    array_map('unlink', glob_recursive($pattern, $flags));
}

0
public static function recursiveDelete($dir)
{
    foreach (new \DirectoryIterator($dir) as $fileInfo) {
        if (!$fileInfo->isDot()) {
            if ($fileInfo->isDir()) {
                recursiveDelete($fileInfo->getPathname());
            } else {
                unlink($fileInfo->getPathname());
            }
        }
    }
    rmdir($dir);
}

0

有一个名为“ Pusheh”的软件包。使用它,您可以清除目录或完全删除目录(Github链接)。也可以在Packagist上使用。

例如,如果要清除Temp目录,可以执行以下操作:

Pusheh::clearDir("Temp");

// Or you can remove the directory completely
Pusheh::removeDirRecursively("Temp");

如果您有兴趣,请参见Wiki

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.