Help for this page
use File::Find; foreach my $path ( @project_paths ) { ... find( $wanted, $dir ); return $file_found; }
use File::Find::Rule; foreach my $path ( @project_paths ) { ... print "No XML files found under dir '$path'\n"; } }