in reply to opening directories in perl
Take a look at File::Find::Rule, which is much easier than File::Find in most instances. You'd want something like (untested):
use File::Find::Rule; my @mlc_files = File::Find::Rule->file->name( 'mlc' )->in( 'new/' );
|
|---|