Help for this page

Select Code to Download


  1. or download this
    if -e $file {
         push @array, $file;
    } else {
         warn "$file does not exist\n";
    }
    
  2. or download this
    if -e $file {
         push @array, $file;
    } else {
         push @not_found, $file;
    }