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.

How do I delete a directory and its entire contents (files+sub dirs) in PHP?

share|improve this question

4 Answers

up vote 9 down vote accepted

Have you tried the first note in the manual page of rmdir?

 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
3  
Yuck, I'm sure that can be re-factored into something nice using DirectoryIterator. – The Pixel Developer Jul 28 '10 at 3:49
1  
@The Pixel Developer - I added an answer showing that. – salathe Jul 28 '10 at 11:58
Just to let you know, you have a typo: rrmdir($dir."/".$object); – Burning the Codeigniter Nov 13 '10 at 16:00
check out the solution someone gave me for the same question: glob seems to work nicer: stackoverflow.com/questions/11267086/… – Dick Savagewood Aug 10 '12 at 17:09

Building on The Pixel Developer's comment, a snippet using the SPL might look like:

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

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

Note: It does no sanity checking and makes use of the SKIP_DOTS flag introduced with the FilesystemIterator in PHP 5.3.0. Of course, the $todo could be an if/else. The important point is that CHILD_FIRST is used to iterate over the children (files) first before their parent (folders).

share|improve this answer
SKIP_DOTS was only introduced in PHP 5.3? Where did you saw that? – Alix Axel May 31 '11 at 17:48
1  
@Alix Axel, r263239 – salathe May 31 '11 at 17:56
Thank you. Also: shouldn't you be using the getPathname() method instead of getRealPath()? – Alix Axel Jun 1 '11 at 8:19
Use whichever does the job for your particular needs, the answer is only a generic example of iterating over the files first then their respective folders. – salathe Jun 1 '11 at 9:26

Or better do a shell_exec for rm -R

share|improve this answer
5  
wont work on windows – Gordon Jul 27 '10 at 7:00
how about DEL /S folder_name for Windows – Ankit Jain Oct 21 '10 at 8:50

Something like this?

function delete_folder($folder) {
    $glob = glob($folder);
    foreach ($glob as $g) {
        if (!is_dir($g)) {
            unlink($g);
        } else {
            delete_folder("$g/*");
            rmdir($g);
        }
    }
}
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.