in reply to Re: Specific last modified times for html files
in thread Specific last modified times for html files

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";

Replies are listed 'Best First'.
Re: Re: Re: Specific last modified times for html files
by joe++ (Friar) on Nov 06, 2002 at 19:28 UTC
    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