Help for this page

Select Code to Download


  1. or download this
      use File::Find;
    
      find(\&eachfile, "/data/");
    
  2. or download this
      sub eachfile {
          my $path = $File::Find::name;
    
    ...
    
          # eventually logging any that you can't handle
      }