Re: Unlink file older then 7 days

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




-----Original Message-----
From: <chris@xxxxxxxxxxxx>
To: <php-general@xxxxxxxxxxxxx>
Date: Mon, 16 Jul 2007 14:25:47 +0100
Subject: Re:  Unlink file older then 7 days

> How would I use fileatime to check if the file is older then 7 days?
> 
> 
> 
> 
something like:
$access = fileatime (c:\path\to\file);//assuming windows server
if ((time()-$access)>(7*24*60*60)){
do whatever with old files
}

off the top of my head. 
There are other ways to do it.
Ray

> 
> >> I have a directory with .txt and .txt.asc files.
> >>
> >> What I want to do is..
> >>
> >> Check the age of all files ending in .txt.asc
> >>
> >> and if the file *.txt.asc is older then 7 days
> >>
> >> delete thatfile.txt.asc and also thatfile.txt
> >>
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux