how can i delete the directory and its all the files belonging in it with php?
|
feedback
|
|
rmdir — Removes directory
Attempts to remove the directory named by dirname . The directory must be empty, and the relevant permissions must permit this. Note rmdir will not remove the directory if the directory is not empty and you will receive a warning message. You would either have to loop through and unlink any existing files, or you could invoke a system command on the directory. Eg:
| |||||||
feedback
|
|
another version using recursiveDirectoryIterator, removes a directory including any files/folders within.
| |||
|
feedback
|
|
You want to nuke a directory and it's contents (which means phoenix's answer is incomplete, since rmdir() won't remove a non-empty directory. If you're being quick-n-dirty, just use whatever facility the system provides. Backticks will make this easy.:
Or you could use exec() (and see the "See Also" options on that page) | |||
|
feedback
|