Help for this page

Select Code to Download


  1. or download this
       my @files=grep {$_ ne '.' && $_ ne '..'}
       @files=readdir(DIR);
    
  2. or download this
       my @files=grep {$_ ne '.' && $_ ne '..'} readdir(DIR);