Código PHP:
$path = "directorio";
if ($handle = opendir($path))
{
while (false !== ($file = readdir($handle)))
{
if ($file != "." && $file != "..")
{
$fName = $file;
$file = $path.'/'.$file;
if(is_file($file))////si es un fichero
{
print"<a href='".$file."'>".$fName."</a>";
}
gracias....