in reply to Numerical Value question

You might like to use File::Find::Rule:

my @files = File::Find::Rule->file() ->name( qr/your regexp here/ ) ->in( $dir );

Hope this helps!


The way forward always starts with a minimal test.