我正在开发一个PHP函数,它将以递归方式删除所有不包含从给定绝对路径开始的文件的子文件夹。
以下是迄今为止开发的代码:
function RemoveEmptySubFolders($starting_from_path) {
// Returns true if the folder contains no files
function IsEmptyFolder($folder) {
return (count(array_diff(glob($folder.DIRECTORY_SEPARATOR."*"), Array(".", ".."))) == 0);
}
// Cycles thorugh the subfolders of $from_path and
// returns true if at least one empty folder has been removed
function DoRemoveEmptyFolders($from_path) {
if(IsEmptyFolder($from_path)) {
rmdir($from_path);
return true;
}
else {
$Dirs = glob($from_path.DIRECTORY_SEPARATOR."*", GLOB_ONLYDIR);
$ret = false;
foreach($Dirs as $path) {
$res = DoRemoveEmptyFolders($path);
$ret = $ret ? $ret : $res;
}
return $ret;
}
}
while (DoRemoveEmptyFolders($starting_from_path)) {}
}
根据我的测试,此功能有效,但我很高兴看到有关更好的代码的任何想法。
答案 0 :(得分:22)
如果空文件夹中的空文件夹中有空文件夹,则需要在所有文件夹中循环三次。所有这些,因为你先测试文件夹,然后测试它的孩子。相反,你应该在测试之前进入子文件夹,如果parent是空的,这样一次传递就足够了。
function RemoveEmptySubFolders($path)
{
$empty=true;
foreach (glob($path.DIRECTORY_SEPARATOR."*") as $file)
{
if (is_dir($file))
{
if (!RemoveEmptySubFolders($file)) $empty=false;
}
else
{
$empty=false;
}
}
if ($empty) rmdir($path);
return $empty;
}
顺便说一句,glob不会返回。和......条目。
更短的版本:
function RemoveEmptySubFolders($path)
{
$empty=true;
foreach (glob($path.DIRECTORY_SEPARATOR."*") as $file)
{
$empty &= is_dir($file) && RemoveEmptySubFolders($file);
}
return $empty && rmdir($path);
}
答案 1 :(得分:1)
这一行
$ret = $ret ? $ret : $res;
可以更具可读性:
$ret = $ret || $res;
或者,如果PHP具有按位运算符:
$ret |= $res;
答案 2 :(得分:1)
您可以执行unix命令删除空目录。
exec(“find $ starting_from_path -type d -empty -exec rmdir {} \; 2> / dev / null”);
答案 3 :(得分:0)
这会带来麻烦,因为调用RemoveEmptySubFolders
几次可能会产生错误,因为每次调用该函数时,都会再次定义其他2个函数。如果已经定义了它们,PHP将抛出一个错误,说明已经定义了同名函数。
而是递归地尝试:
function removeEmptySubfolders($path){
if(substr($path,-1)!= DIRECTORY_SEPARATOR){
$path .= DIRECTORY_SEPARATOR;
}
$d2 = array('.','..');
$dirs = array_diff(glob($path.'*', GLOB_ONLYDIR),$d2);
foreach($dirs as $d){
removeEmptySubfolders($d);
}
if(count(array_diff(glob($path.'*'),$d2))===0){
rmdir($path);
}
}
经过测试,工作得很好。 Windows 7 PHP 5.3.0 XAMPP
答案 4 :(得分:0)
你可以试试这个。
function removeEmptySubfolders($path){
if(substr($path,-1)!= DIRECTORY_SEPARATOR){
$path .= DIRECTORY_SEPARATOR;
}
$d2 = array('.','..');
$dirs = array_diff(glob($path.'*', GLOB_ONLYDIR),$d2);
foreach($dirs as $d){
removeEmptySubfolders($d);
}
if(count(array_diff(glob($path.'*'),$d2))===0){
$checkEmpSubDir = explode(DIRECTORY_SEPARATOR,$path);
for($i=count($checkEmpSubDir)-1;$i>0;$i--){
$path = substr(str_replace($checkEmpSubDir[$i],"",$path),0,-1);
if(($files = @scandir($path)) && count($files) <= 2){
rmdir($path);
}
}
}
}
答案 5 :(得分:0)
Linux解决方案,使用命令行工具,但比纯PHP更快更简单
/**
* Remove all empty subdirectories
* @param string $dirPath path to base directory
* @param bool $deleteBaseDir - Delete also basedir if it is empty
*/
public static function removeEmptyDirs($dirPath, $deleteBaseDir = false) {
if (stristr($dirPath, "'")) {
trigger_error('Disallowed character `Single quote` (\') in provided `$dirPath` parameter', E_USER_ERROR);
}
if (substr($dirPath, -1) != '/') {
$dirPath .= '/';
}
$modif = $deleteBaseDir ? '' : '*';
exec("find '".$dirPath."'".$modif." -empty -type d -delete", $out);
}
如果您需要Windows支持,请使用PHP_OS
常量和此单行
for /f "delims=" %d in ('dir /s /b /ad ^| sort /r') do rd "%d"`enter code here