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 Quote 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] Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.