Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: How do I determine if a file was modified today?

by fs (Monk)
on Jun 02, 2001 at 10:19 UTC ( [id://85169]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # 24 hours * 60 minutes/hour * 60 seconds/minute
    $threshhold = 86400;
    ...
    if( ($currenttime - $mtime) > $threshhold){
        # file was modified within 24 hours
    }
    
  2. or download this
    if( $mtime > ($currenttime - ($currenttime % 86400)){
       # file was modified this calendar day
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (7)
As of 2024-03-28 08:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found