- or download this
return unless $File::Find::dir =~ /[IPD]\d{8}$/;
- or download this
sub dir_names
{
...
return unless $_ =~ /[IPD]\d{8}$/;
$dirs{$File::Find::name} = 1;
}
- or download this
sub dir_names
{
...
return unless /[IPD]\d{8}$/;
$dirs{$File::Find::name} = 1;
}