Help for this page

Select Code to Download


  1. or download this
    find({
      preprocess => sub {
    ...
      },
      wanted => \&processSub,
    }, $startDir);
    
  2. or download this
    use File::Find::Rule;
    
    ...
    while(my $thing = $iter->match) {
      ...
    }