Help for this page

Select Code to Download


  1. or download this
    foreach my $path ( @local_list ){
      opendir my $dirh,$path or die "Can't open $path";
    ...
          -s $file  ;
      }      
    }
    
  2. or download this
    use File::Find::Rule;
    use File::Basename;
    ...
          -s $file,
      ;
    }