
10/03/2004, 11:48
|
| | Fecha de Ingreso: noviembre-2003 Ubicación: México, D.F.
Mensajes: 76
Antigüedad: 21 años, 5 meses Puntos: 0 | |
Hola NeoZ, aqui te dejo un ejemplo documentado de como utilizar el delete para un archivo.
<%
dim fs
Set fs=Server.CreateObject("Scripting.FileSystemObject ")
fs.CreateTextFile("c:\test.txt",True)
if fs.FileExists("c:\test.txt") then
fs.DeleteFile("c:\test.txt")
end if
set fs=nothing
%>
Espero que te funcione.
Saludos,
David. |