Help for this page

Select Code to Download


  1. or download this
    sub getFileList {
       my @fileList = ();        # list for matching files
    ...
       find($findFilter, ".");  # populates the list
       return @fileList;
    }
    
  2. or download this
    use File::Find::Rule;
    
    ...
      name => '*.hhc',
      dir  => '.'
    );