How to? age of file in seconds

Oct 18, 2008
346
2
Hello -- I would like to test if a file is an hour or more old.

What is the best way to test for this?

thanks

fpe
 
May 20, 2008
12,167
133
Syracuse, NY, USA
I don't know about "best" but (using the file's WRITE timestamp) ...
Code:
if %@eval[(%@makeage[%_date,%_time] - %@fileage[test.csv.txt,w]) / 10000000] gt 3600 echo It's old
 

Similar threads