Showing posts with label List Directory. Show all posts
Showing posts with label List Directory. Show all posts

Sunday 29 July 2012

PHP List Directory Contents


List Directory Contents 

function list_files($dir)
{
    if(is_dir($dir))
      {
          if($handle = opendir($dir))
          {
              while(($file = readdir($handle)) !== false)
              {
                  if($file != "." && $file != ".." && $file != "Thumbs.db")
                  {
                      echo '<a target="_blank" href="'.$dir.$file.'">'.$file.'</a><br>'."\n";
                  }
              }
              closedir($handle);
          }
    }
}