Hi, i have this script to know what files have been last modified since a
hour:
my $pathname="d:/perlide";

my @files = grep time - (lstat)[9] < 3600, <$pathname/*.*>;
foreach(@files)
{
  print "$_\n";
   
}

It works but now I wanted to know all files that are last modified since a
date and a time that i could specify like for exemple since 2/10/2002.
How can i do this in Perl?
Thanks. 
_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to