Posts Tagged ‘Empty Directory with PHP’

<?php
function SureRemoveDir($dir, $DeleteMe) {
if(!$dh = @opendir($dir)) return;
while (false !== ($obj = readdir($dh))) {
if($obj=='.' || $obj=='..') continue;
if (!@unlink($dir.'/'.$obj)) SureRemoveDir($dir.'/'.$obj, true);
}

closedir($dh);
if ($DeleteMe){
@rmdir($dir);
}
}
?>

Thursday, March 19th, 2009 at 14:19 | 0 comments
Categories: PHP, Programming
TOP