Help for this page

Select Code to Download


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