Skip to content

Instantly share code, notes, and snippets.

@krisanalfa
Created June 15, 2015 13:55
Show Gist options
  • Save krisanalfa/cd9ab42929b470f2ebdc to your computer and use it in GitHub Desktop.
Save krisanalfa/cd9ab42929b470f2ebdc to your computer and use it in GitHub Desktop.
Remove Assets Recursively
<?php
header('Content-type: text/plain');
set_time_limit(0);
if (!function_exists('recursive_rmdir')) {
/**
* Remove directory recursively.
*
* @param string $dirPath Directory you want to remove.
*
* @author Krisan Alfa Timur <[email protected]>
*/
function recursive_rmdir($dirPath)
{
foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dirPath, FilesystemIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST) as $path) {
$pathName = $path->getPathname();
echo $pathName."\n";
($path->isDir() and ($path->isLink() === false)) ? rmdir($pathName) : unlink($pathName);
}
rmdir($dirPath);
}
}
recursive_rmdir(__DIR__.DIRECTORY_SEPARATOR.'assets');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment