I was wondering if there was a way of using a script or some other option whereby I could automatically have files over a certain date deleted from my server.
I have created an AS3 eCard application whereby a php script writes a *.txt file to a folder with the relevant details of the message etc and would like to know if it's possible to have files over 'n' days old automatically deleted some way to avoid cluttering up the site?
Thanks for your time if you know of any such methods.
PHP Amendment :
<?php
if ($handle = opendir('/myFolder/holdingFolder')) {
while (false !== ($file = readdir($handle))) {
$filelastmodified = filemtime($file);
if((time() - $filelastmodified) > 14*24*3600)
{
unlink($file);
}
}
closedir($handle);
}
?>
I'm still learning php and would appreciate if anyone with more experience could look over this to point me in the right direction, if it's the right way to go about deleting files in a folder after 14 days of creation?
If so, my server is windows/Plesk, would I need any special commands to run it and how often would you advise?