You've already forked ugly-queue
13 lines
240 B
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');
|
|
} |