Help for this page

Select Code to Download


  1. or download this
      $file_full_path = "$path/$_"; 
    
    if (-d $_){ 
       ...
       process($_);
    
  2. or download this
      $file_full_path = "$path/$_"; 
    
    if (-d $file_full_path){ 
       ...
       process($file_full_path);
    
  3. or download this
      process($SOURCEDIR);