/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php /** * Delete a file, or a folder and its contents (recursive algorithm) * * @author Aidan Lister <[email protected]> * @version 1.0.3 * @link http://aidanlister.com/repos/v/function.rmdirr.php * @param string $dirname Directory to delete * @return bool Returns TRUE on success, FALSE on failure */ function rmdirr($dirname) { // Sanity check return false; } // Simple delete for a file } // Loop through the folder while (false !== $entry = $dir->read()) { // Skip pointers if ($entry == '.' || $entry == '..') { continue; } // Recurse rmdirr($dirname . DIRECTORY_SEPARATOR . $entry); } // Clean up $dir->close(); } ?>
URL: http://aidanlister.com/2004/04/recursively-deleting-a-folder-in-php/