How can I delete files created one day ago?

posted by softweb on 2009-07-09 18:29:29
Hey Guys,
How can I remove files created one day ago from a directory?
Thank you
dail avatar
dail
12
 
$directory = "/home/user/my_dir";
 
$files = glob("$directory/*");
foreach ($files as $file){
    if (time() - filemtime($file) < 60*60*24)
        @unlink($file);
}
 
49 answers - 0 questions
  Positive        Negative

ednoel
0
You can't.
1 answers - 0 questions
  Positive        Negative

softweb avatar
softweb
2
Posted by ednoel:
You can\'t.

Why?
7 answers - 7 questions
  Positive        Negative

dail avatar
dail
12
softweb:
Did you try my code? filemtime() function returns the file modification time, try it.
49 answers - 0 questions
  Positive        Negative



Answer the question



Top Users
  • dail (12)
  • livin52 (3)
  • camu (3)
  • softweb (2)
  • Nadine (1)
  • Josware (1)
  • lfelipecr (1)
  • gregoriohc (1)
  • Mitu (1)
  • ryan714 (1)