Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function dirDel ($dir)
- {
- $d=opendir($dir);
- while(($entry=readdir($d))!==false)
- {
- if ($entry != "." && $entry != "..")
- {
- if (is_dir($dir."/".$entry))
- {
- dirDel($dir."/".$entry);
- }
- else
- {
- unlink ($dir."/".$entry);
- }
- }
- }
- closedir($d);
- rmdir ($dir);
- }
- or
- system("rm -rf directory")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement