Help for this page

Select Code to Download


  1. or download this
      my $mask    = shift;
      my @folders    = glob("$mask");
    ...
      if (scalar(@folders) == 0) {
        return undef;
      }
    
  2. or download this
    @t1 = glob('*1');
    @t2 = glob('1');
    @t3 = glob('file2');
    @t4 = glob('*3');