in reply to Get file names between two timestamps on Unix/Linux

It may be that File::Find::Rule's mtime or ctime will get you where you want to go. Something like (untested):

my @files = File::Find::Rule->file () ->name ('*.pl') ->ctime(">=$startTime") ->ctime("<$endTime") ->in (@INC);

Perl is environmentally friendly - it saves trees