in reply to Re: list files based on age and pattern
in thread list files based on age and pattern

Hello Richard,

I tried as you suggested but it gives me error "cant locate object method "file" via package file::find::rule..........

my perl version is v5.8.8 and upgrade is not an option on client machine.

-KAKA-
  • Comment on Re^2: list files based on age and pattern

Replies are listed 'Best First'.
Re^3: list files based on age and pattern
by hdb (Monsignor) on Sep 16, 2013 at 13:37 UTC

    You would need to add a line

    use File::Find::Rule;

    somewhere at the top of your script. (Assuming this module is installed on your machine.) Also, have a look at the examples in the documentation as linked in CountZero's post.