mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-17 09:30:49 +00:00
38 lines
895 B
PHP
38 lines
895 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Twig.
|
|
*
|
|
* (c) Fabien Potencier
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Twig\Tests;
|
|
|
|
/*
|
|
* This file is part of Twig.
|
|
*
|
|
* (c) Fabien Potencier
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
class FilesystemHelper
|
|
{
|
|
public static function removeDir($dir)
|
|
{
|
|
$iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($dir, \FilesystemIterator::SKIP_DOTS), \RecursiveIteratorIterator::CHILD_FIRST);
|
|
foreach ($iterator as $filename => $fileInfo) {
|
|
if ($fileInfo->isDir()) {
|
|
rmdir($filename);
|
|
} else {
|
|
unlink($filename);
|
|
}
|
|
}
|
|
rmdir($dir);
|
|
}
|
|
}
|