
29/11/2005, 11:15
|
| | Fecha de Ingreso: febrero-2005
Mensajes: 1.015
Antigüedad: 20 años, 3 meses Puntos: 6 | |
Lo dejo aquí apuntado.
Al final era:
Dim objFSO
set objFSO = server.createObject ("scripting.FileSystemObject")
DIRNAME="/la_ruta_que_sea"
Set dir = objFSO.GetFolder(Server.MapPath(DIRNAME))
For Each file In dir.Files
response.write file.name & "<br>"
next
Y no, efectivamente lo de "file" no importaba, podría haber puesto PEPE también. |