$ficheros=array(); $dir=opendir("documentos"); while(false !== ($file= readdir($dir))){ if ($file != "." && $file != "..") { $ficheros[]=$file; } } closedir($dir); sort($ficheros);