Help for this page

Select Code to Download


  1. or download this
    my $CurrentDir="."; # Or "Sanjay";
    opendir DH, "." or die "failed to readdir $CurrentDir: $!";
    ...
             print "sucess: $_";
       }
    }
    
  2. or download this
    while (glob "$CurrentDir/*"){
      $temp = $_;
      # Remainder of the code is the same.