Created
June 15, 2015 13:55
-
-
Save krisanalfa/cd9ab42929b470f2ebdc to your computer and use it in GitHub Desktop.
Remove Assets Recursively
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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