gracias:
Código:
<%
Set fs = Server.CreateObject("Scripting.FileSystemObject")
Set lista_archivos = fs.GetFolder(Server.MapPath("."))
'Mostramos los archivos...
For each filefound in lista_archivos.files
if filefound.Name = "index.asp" then
Response.Write filefound.Name & "<BR>"
end if
Next
%>
lo unico q tendria q optimizar el bucle, pero no veo como, pues me parece q tengo q recorrer toda la carpeta.