Files
ugly-queue/tests/misc/cleanup.php

13 lines
240 B
PHP

<?php
if (is_dir(__DIR__.'/tasty-sandwich'))
{
foreach(glob(__DIR__.'/tasty-sandwich/*') as $file)
{
if (substr($file, -1) === '.')
continue;
unlink($file);
}
rmdir(__DIR__.'/tasty-sandwich');
}