Help for this page

Select Code to Download


  1. or download this
    use File::Find; 
    
     find(\&wanted, @directories_to_search);
               sub wanted { ... }
    
  2. or download this
    $File::Find::dir is the current directory name
    $_ is the current filename within that directory