Help for this page

Select Code to Download


  1. or download this
    use File::Glob ();
    use warnings;
    ...
    foreach $file (@FILES) {
        ();
    }
    
  2. or download this
    $WantedFiles = '//server/path/WantedFiles*.*';
    @FILES = <$WantedFiles>;
    foreach $file (@FILES) {
        ();
    }