Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: File test to see creation time rather than last modified time

by almut (Canon)
on Feb 05, 2009 at 16:50 UTC ( [id://741602]=note: print w/replies, xml ) Need Help??


in reply to File test to see creation time rather than last modified time

You could use stat():

if ( (time - (stat FILE)[10]) / (60*60*24) > 5 ) { ... }

Actually, as -M is "Script start time minus file modification time, in days", you'd have to store the return value of time() right at the beginning of the script, to get the exact equivalent for ctime... though I suppose the difference would be negligible.   (Update: actually (RTFM :) — use "perldoc -f -X" to get the docs for the filetests...) there even seems to be an option -C which does just that...)

Alternatively (Update2: and preferably — see kenneth/MidLifeXis's comments below), reset the modification time to what it was before, every time you make a modification...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://741602]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (9)
As of 2024-04-23 09:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found