Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    [...]
    ...
    
    print "You've found " . join("\n\t", @fileList) . "\n";
    
  2. or download this
    while ($file  = File::Find::find(@directoryList)) {
        if (@wantThis) {
            print "Here's a file I want: $file\n";
        }
    }