Help for this page

Select Code to Download


  1. or download this
    use File::Find::Rule;
    use Smart::Comments '###';
    ...
    $finder->empty();
    my @found = $finder->in($path);
    ### @found
    
  2. or download this
    use IO::Dir;
    use File::Find::Rule;
    ...
        my @found = $finder->in($abs);
        return \@found;
    }