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 ); [download]
Hope this helps!