Jim from Oakland Posted October 11, 2006 Share Posted October 11, 2006 PhreaxThis must be a common task. I need delete files that are more than 24 hours old from a specific directory (no subdirectories).Thanks very much for your assistance.Jim Link to comment https://forums.phpfreaks.com/topic/23688-delete-files-more-than-24-hours-old-in-a-directory/ Share on other sites More sharing options...
Daniel0 Posted October 11, 2006 Share Posted October 11, 2006 This should do it:[code]if(filemtime($file)+24*3600 > time()){ unlink($file);}[/code] Link to comment https://forums.phpfreaks.com/topic/23688-delete-files-more-than-24-hours-old-in-a-directory/#findComment-107516 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.