in reply to Re: Exceeding CPU Limit
in thread Exceeding CPU Limit

or can also use File::Find::Rule or similar:
my @files = File::Find::Rule->file()->name( qr/^N/ )->maxdepth(1)->in( + '/tmp/' );
Note that that will return full paths ..