1

我按照这个 SO 线程递归地删除了一个目录(见下面的代码)。问题是在压缩目录内容并下载 zip 文件后,我无法让这些命令执行它们的操作。

文件/文件夹权限似乎不是问题,因为正如我所说,如果不涉及文件夹压缩,代码就可以正常工作。

有人有想法么?

$this->zip->download($file_name); //a Codeigniter function, though think it could be any function that executes the zip file download.

$dir='uploads/folder1'; 
//the contents of folder1 are "foo1.png" and "foo2.png"

$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir, RecursiveDirectoryIterator::SKIP_DOTS),  RecursiveIteratorIterator::CHILD_FIRST);

foreach ($files as $fileinfo) {
    $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
    $todo($fileinfo->getRealPath());
}

rmdir($dir); 
4

2 回答 2

1

我遇到了同样的问题并找到了解决方案。

protected function _deleteFolder($path = null) {

    if (!$path || !file_exists($path)) {
        return FALSE;
    }

    delete_files($path, true); // delete all files/folders
    rmdir($path);
}

$folder_path = '/path/to/the/folder/to/be/zipped/downloaded';
$this->zip->read_dir($folder_path, FALSE);
$this->_deleteFolder($folder_path); // This will delete the folder
$this->zip->download('zipped-downloadable-file-name.zip');

这对我有用。

于 2014-12-21T08:14:01.563 回答
0

要递归删除目录,您可以使用此代码。
注意: $var 可以是文件或目录。如果是目录,则删除所有内容和目录。
来源:http : //php.net/manual/en/function.rmdir.php,请查看 jurchiks101 在 gmail dot com 的评论。

if(file_exists($var))
{
    if (PHP_OS === 'Windows')
    {
        exec("rd /s /q {$var}");
    }
    else
    {
        exec("rm -rf {$var}");
    }
}
于 2014-11-16T10:46:13.767 回答