I am using PHP to move the contents of a images subfolder

GalleryName/images/

into another folder. After the move, I need to delete the GalleryName directory and everything else inside it.

I know that rmdir() won't work unless the directory is empty. I've spent a while trying to build a recursive function to scandir() starting from the top and then unlink() if it's a file and scandir() if it's a directory, then rmdir() each empty directory as I go.

So far it's not working exactly right, and I began to think -- isn't this a ridiculously simple function that PHP should be able to do? Removing a directory?

So is there something I'm missing? Or is there at least a proven function that people use for this action?

Any help would be appreciated.

PS I trust you all here more than the comments on the php.net site -- there are hundreds of functions there but I am interested to hear if any of you here recommend one over others.

link|improve this question

77% accept rate
Have you considered shell_exec() function with a 'rm -fr'? Not the best approach, but if you now what you are doing, it works fine. – rogeriopvl Sep 10 '09 at 20:03
feedback

3 Answers

up vote 1 down vote accepted

This is another good implementation:

http://lixlpixel.org/recursive_function/php/recursive_directory_delete/

link|improve this answer
This is great, thanks. Great commenting. – Jason Rhodes Sep 10 '09 at 20:06
3  
Link is broken. Maybe you could copy the solution here. – grom Oct 7 '09 at 2:52
Seems it's back :) – inakiabt Oct 20 '09 at 13:25
1  
link is broken again – Henning Mar 15 at 15:52
feedback

This is the recursive function I've created/modifed and that finally seems to be working. Hopefully there isn't anything too dangerous in it. (Note: I've defined DS to the DIRECTORY_SEPARATOR in an init.php file.

function destroy_dir($dir) { 
    if (!is_dir($dir) || is_link($dir)) return unlink($dir); 
        foreach (scandir($dir) as $file) { 
            if ($file == '.' || $file == '..') continue; 
            if (!destroy_dir($dir.DS.$file)) { 
                chmod($dir.DS.$file, 0777); 
                if (!destroy_dir($dir.DS.$file)) return false; 
            }; 
        } 
        return rmdir($dir); 
    } 
link|improve this answer
This function is dangerous, instead of $item there should be $file! – johndodo Sep 16 '11 at 17:24
feedback

Here is a good implementation:

Remove Directories Recursively with PHP

At many times we need to empty a directory. Of course PHP has the filesystem functions like unlink() and rmdir() to delete files and directories. At first we may think that simply use rmdir() will solve the problem. Unfortunately it's not. rmdir() only removes empty directory. If the directory is not empty, it will return false.

In order to remove a directory and its contents, we have to remove its contents first, consisting of files and subdirectories. To make things more complicated, the subdirectories also contains files and another subdirectories in it.

It seems like this is a difficult task to solve. But in contrast, this is a very simple recursive function.

link|improve this answer
Yes, I know all this. Thanks. – Jason Rhodes Sep 10 '09 at 19:54
Well, you aren't going to find a much better implementation and none exists in the PHP lib so I would recommend that you use this :) – Andrew Hare Sep 10 '09 at 19:55
The link is broken – rogeriopvl Sep 10 '09 at 19:56
Andrew, I'm sorry. I didn't see your link and was only replying to your text below the link. And yes, the link is broken. Thanks anyway. – Jason Rhodes Sep 10 '09 at 20:04
the link is broken - no solution. – Henning Mar 15 at 16:01
feedback

Your Answer

 
or
required, but never shown

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