Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on a PHP function that will recursively remove all sub-folders that contain no files starting from a given absolute path.

Here is the code developed so far:

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)) {}
}

As per my tests this function works, though I would be very delighted to see any ideas for better performing code.

share|improve this question
2  
So what's the question? – Benoit Dec 2 '09 at 15:14
@Ben - from TS - 'I would be very delighted to see any ideas for better performing code.' – mauris Dec 2 '09 at 15:16
Maybe better post this at refactormycode.com ? – ChristopheD Dec 2 '09 at 15:16

4 Answers

up vote 7 down vote accepted

If you have empty folder within empty folder within empty folder, you'll need to loop through ALL folders three times. All this, because you go breadth first - test folder BEFORE testing its children. Instead, you should go into child folders before testing if parent is empty, this way one pass will be sufficient.

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;
}

By the way, glob does not return . and .. entries.

Shorter version:

function RemoveEmptySubFolders($path)
{
  $empty=true;
  foreach (glob($path.DIRECTORY_SEPARATOR."*") as $file)
  {
     $empty &= is_dir($file) && RemoveEmptySubFolders($file);
  }
  return $empty && rmdir($path);
}
share|improve this answer
Excellent algorithm! In order for the function to work two small bugs should be corrected: 1. $folder should be changed to $path in the foreach statement. 2. $file should be passed as a parameter to the recursive function call instead of $starting_from_path. – Dmitry Letano Dec 2 '09 at 20:10
Thank you. Fixed – yu_sha Dec 3 '09 at 8:34
Please note that, if your function runs under Linux, hidden sub directories (with names starting with a dot) will also be wrongly matched as "empty" directories. – Werner Feb 6 at 13:26

This line

$ret = $ret ? $ret : $res;

Could be made a little more readable:

$ret = $ret || $res;

Or if PHP has the bitwise operator:

$ret |= $res;
share|improve this answer

This would spell trouble because calling RemoveEmptySubFolders a few times would probably spell errors because each time you call the function, the other 2 functions are defined again. If they have already been defined, PHP will throw an error saying a function of the same name has already been defined.

Instead try it recursively:

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);
  }

}

Tested, working nicely. Windows 7 PHP 5.3.0 XAMPP

share|improve this answer
Well, of course, if the check whether the folder is empty is made after the recursive call, this would be allow for much more efficient algorithm... Shame on me :-| You were right about the issue with nesting functions too, PHP throws fatal error on the second call to the outer function. Thanks a lot! – Dmitry Letano Dec 2 '09 at 19:32
if it answers, put a tick to it =) – mauris Dec 2 '09 at 22:48
Done. I have to say though that the code proposed by yu_sha seems to better answer my question in terms of performance improvements and I would mark it as an accepted answer, provided that there would be no bugs in the code so it could be copy-pasted. – Dmitry Letano Dec 3 '09 at 6:38

You can try this.

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);
      }
    }
  }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.