in reply to Picking up files based on datestamp

As well as using a regular expression, as suggested by moritz, have a look at opendir, readdir and grep. You should be able to arrive at something along the lines of

my @filesWanted = grep { -f && m{your regex} } readdir $dirHandle;

I hope this is of use.

Cheers,

JohnGG