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.

Possible Duplicate:
A recursive remove directory function for PHP?

With PHP

I want to know the easiest way for delete a folder with files and folders inside.

Thanks!

share|improve this question

marked as duplicate by John Flatness, Tim Cooper, Jeff Mercado, JoseK, Dori Sep 26 '11 at 11:13

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

This trick from the PHP docs is pretty cool:

function rrmdir($path)
{
  return is_file($path)?
    @unlink($path):
    array_map('rrmdir',glob($path.'/*'))==@rmdir($path)
  ;
}

It exploits array_map, which calls the given function on an array of results. It's also cross-platform.

share|improve this answer

system("rm -fr $foldername");

It only works on unix though, but it is easy.

share|improve this answer
I do not recommend doing this, but if you must, please make sure you (a) use escapeshellcmd on $foldername before calling this, and (b) be careful of the path you're executing from. I'd make sure $foldername is an absolute path, just to be safe. – Zach Rattner Sep 26 '11 at 0:22
Thank you and have you in a way that is independent of the shell to Unix? – Yasmina Saraya Sep 26 '11 at 0:23

This recursive function has been posted as a comment on the rmdir() function reference page:

function rrmdir($dir) {
    if (is_dir($dir)) {
        $objects = scandir($dir);
        foreach ($objects as $object) {
            if ($object != "." && $object != "..") {
                if (filetype($dir . "/" . $object) == "dir")
                    rrmdir($dir . "/" . $object);
                else
                    unlink($dir . "/" . $object);
            }
        }
        reset($objects);
        rmdir($dir);
    }
}
share|improve this answer

This was posted here http://www.php.net/manual/en/function.rmdir.php

if(!file_exists($directory) || !is_dir($directory)) { 
    return false; 
} elseif(!is_readable($directory)) { 
    return false; 
} else { 
    $directoryHandle = opendir($directory); 

    while ($contents = readdir($directoryHandle)) { 
        if($contents != '.' && $contents != '..') { 
            $path = $directory . "/" . $contents; 

            if(is_dir($path)) { 
                deleteAll($path); 
            } else { 
                unlink($path); 
            } 
        } 
    } 

    closedir($directoryHandle); 

    if($empty == false) { 
        if(!rmdir($directory)) { 
            return false; 
        } 
    } 

    return true; 
} 

}

share|improve this answer

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