Help for this page

Select Code to Download


  1. or download this
    @files = grep {  -f "$dir/$_" } readdir(DH);
    
  2. or download this
    use DirHandle;
    
    ...
              grep {  !/^\./   }       # filter out dot files
              $dh->read();             # read all entries
    }