Help for this page

Select Code to Download


  1. or download this
    opendir DIR, "MainDir" or die "";
    while( $file = readdir(DIR) )
    ...
      #do whatever you want to the file
    }
    closedir DIR;
    
  2. or download this
    while( $file = <*.cpp> )
    {
      #do something to the file
    }