Hello PerlMonks,
I have a function which list files from specified directory based on the regex. i want an additional filtering which should be based on time. for example which fullfill below pattern condition and file should have minimum age of 15 minute. i now i can use -M test operator to do such filtering but i am not sure if this is possible with AND operator in the same sub with grep
Could someone help me with this?
Thank for your help. -KAKA-sub GetINDirFiles { my ($path) = @_; opendir DIR, $path or die $!; # my @files = readdir DIR; my @files = grep {!/\_NSA|_\d+_\d+\.xml/} readdir DIR; closedir DIR; return(@files); }
In reply to list files based on age and pattern by kaka_2
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |