Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/01/2002, 05:38
Mecenias
 
Fecha de Ingreso: agosto-2001
Mensajes: 336
Antigüedad: 23 años, 8 meses
Puntos: 0
Re: Crear carpetas

Prueba con:

<pre>
set FSO = Server.CreateObject(&quot;Scripting.FileSystemObje ct&quot;)

if (FSO.folderexists(&quot;c:\temp&quot;)) then
fso.CreateFolder (&quot;c:\\nueva&quot;)
else
response.write &quot;No existe&quot;
end if

set FSO = nothing

</pre>

te sirvio?