Help for this page

Select Code to Download


  1. or download this
    opendir(DIR, "$dir") || die "can't open dir $dir: $!.\n";
    while (defined(my $file = readdir DIR)) {
      next unless /BLAH/;
      do something;
    }
    closedir(DIR);