Help for this page

Select Code to Download


  1. or download this
    my @dir = ( qw( N:/TMP N:/TMP_2 ));
    for my $dir ( @dir) { 
         find( \&wanted ($dir), $dir ); 
    }
    
  2. or download this
    sub wanted { 
         my $dir = shift;
         print "[$dir] $File::Find::dir $File::Find::name\n"; }