in reply to Re: Specific last modified times for html files
in thread Specific last modified times for html files
Here is my script so far: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
#!/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 |