Help for this page

Select Code to Download


  1. or download this
    @FILES = <//server/path/WantedFiles*.*> ;
    foreach $file(@FILES){
    #do stuff...
    }
    
  2. or download this
    $WantedFiles = "//server/path/WantedFiles*.*";
    @FILES = <$WantedFiles> ;
    foreach $file(@FILES){
    #do stuff...
    }