function fetchDir($dir) { foreach(glob($dir.'\*') as $file) { echo $file,"\n"; if(is_dir($file)) { fetchDir($file); } } } fetchDir("D:\wamp\www\any");