
10/01/2002, 05:27
|
| | Fecha de Ingreso: enero-2002
Mensajes: 21
Antigüedad: 23 años, 4 meses Puntos: 0 | |
Re: Crear carpetas Gracias lo he probado asi pero no me funciona
set FSO = Server.CreateObject("Scripting.FileSystemObje ct")
if FSO.folderexists("c:\temp")=true then
fso.createfolder "c:\nueva"
else
response.write "No existe"
end if
set FSO = nothing
que hago mal??
tambien he probado asi
set FSO = Server.CreateObject("Scripting.FileSystemObje ct")
if FSO.folderexists("c:\temp")=true then
fso.createfolder ("c:\nueva")
else
response.write "No existe"
end if
set FSO = nothing
y tampoco.....
Gracias :( |