I wonder, what's the easiest way to delete a directory with all its files in it?
I'm using rmdir(PATH . '/' . $value); to delete a folder, however, if there are files inside of it, I simply can't delete it.
|
|
There are at least two options available nowdays.
|
|||||||||||||||||
|
|
|||||||||||||||||||
|
|
Short function that does the job:
I use it in a Utils class like this:
|
|||||||||
|
|
I prefer this because it still returns TRUE when it succeeds and FALSE when it fails, and it also prevents a bug where an empty path might try and delete everything from '/*' !!:
|
||||
|
|
|
Be careful. Sometimes recursion filter deletes all your project files. So before testing, backup your files and MySQL database and then do the testing. |
||||
|
|
|
This is a shorter Version works great to me
|
||||
|
|
|
Here is a simple solution
|
||||
|
As seen in most voted comment on PHP manual page about Algorithm described there (which worked like a charm in my case) is:
|
|||
|
|
|
Something like this?
|
|||
|
|
|
Here you have one nice and simple recursion for deleting all files in source directory including that directory:
Function is based on recursion made for copying directory. You can find that function here: Copy entire contents of a directory to another using php |
|||
|
|
Have your tryed out the obove code from php.net Work for me fine |
|||
|
|