Help for this page

Select Code to Download


  1. or download this
    sub wanted {
        print OUT "$File::Find::dir/";  
        print OUT "$_\n";          
        }
    
  2. or download this
    sub wanted {
        print OUT "$File::Find::name\n";  
        }
    
  3. or download this
    sub wanted {
        print OUT "Directory: $File::Find::dir\n";
        print OUT "Basename: $_\n";
        print OUT "Full Path: $File::Find::name\n";
        }