Help for this page

Select Code to Download


  1. or download this
       readdir ($DIR);    # ignore .
       readdir ($DIR);    # ignore ..
    
  2. or download this
      @files = grep {/^(?!\.{1,2}\z)/} readdir($DIR);