Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
28 righe
738 B
28 righe
738 B
<? |
|
if (isset($config)) { |
|
alertManager::printCliInfo("Eliminazione file cestino"); |
|
if (empty(getQueueLog("0","cleanDel"))) { |
|
$days = 7; |
|
$path = $config["mediaFolder"] . DIRECTORY_SEPARATOR . "_del"; |
|
if (file_exists($path)) { |
|
if ($handle = opendir($path)) |
|
{ |
|
while (false !== ($file = readdir($handle))) |
|
{ |
|
$file = $path.DIRECTORY_SEPARATOR.$file; |
|
if (is_file($file)) |
|
{ |
|
if (filemtime($file) < ( time() - ( $days * 24 * 60 * 60 ) ) ) |
|
{ |
|
unlink($file); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
writeQueueLog("0","cleanDel"); |
|
} else { |
|
alertManager::printCliWarning("Già eseguito"); |
|
} |
|
} |
|
?>
|