<?php if (file_exists ("./")) { if (is_dir ("./")) { $dh = opendir ("./") or die (" Directory Open failed !"); while ($file = readdir ($dh)) { echo "$file\n"; } echo "Directory was opened successfully"; Closedir ($dh); } } ?>