Help for this page

Select Code to Download


  1. or download this
    next if($file eq ".");
    next if($file eq "..");
    
  2. or download this
    next if $file =~ /^\.{1,2}$/;
    
  3. or download this
    opendir(TARGET, $target);
    while($file = readdir(TARGET))
    {
        &process_new_file($file) if $file =~ /\.xls$/;
    }