Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Specific last modified times for html files

by joe++ (Friar)
on Nov 06, 2002 at 16:23 UTC ( [id://210782]=note: print w/replies, xml ) Need Help??


in reply to Specific last modified times for html files

Hello,
  1. Compare $mtime to the epoch time for Jan 1st 2000 in your timezone
  2. use POSIX and see man strftime
HTH,

--
Cheers, Joe

Replies are listed 'Best First'.
Re: Re: Specific last modified times for html files
by Anonymous Monk on Nov 06, 2002 at 17:33 UTC
    Okay thanks now I have the dates looking good but how do I fetch dates older than 1/1/2000???? My new output:
    HTML: /directory/path/dir/fil.html 7/22/2002 HTML: /directory/path/dir/df.html 7/22/2002 HTML: /directory/path/dir/fddd.html 2/2/2000 HTML: /directory/path/dir/fda.htm 12/2/1999
    Here is my script so far:
    #!/usr/local/bin/perl #use strict; use File::Find; $start = '/directory/path/dir'; $ct = 0; find(\&process, $start); sub process { return unless /\.html?$/; $ct++; print "HTML: $File::Find::name\t\t"; $mtime = (stat($_))[9]; ($seconds, $minutes, $hours, $day_of_month, $month, $year, $wday, $yday, $isdst) = localtime($mtime); printf("%02d/%02d/%04d\n", $month+1, $day_of_month, $year+1900); } print "Tot = $ct\n";
      What about (untested...):
      sub process { my $mtime = (stat($_))[9]; # moved this line up return unless (/\.html?$/ && ($mtime < 946684800)); $ct++; print "HTML: $File::Find::name\t\t"; ($seconds, $minutes, $hours, $day_of_month, $month, $year, $wday, $yday, $isdst) = localtime($mtime); printf("%02d/%02d/%04d\n", $month+1, $day_of_month, $year+1900); } print "Tot = $ct\n";
      NOTE: 946684800 is the epoch time for Sat Jan 1 00:00:00 2000 GMT which I found thus:
      perl -MDate::Parse -e"print str2time('01 Jan 2000', 'GMT')"
      HTH!

      --
      Cheers, Joe

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (2)
As of 2024-04-26 05:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found