Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/05/2003, 07:44
ToKaTa
 
Fecha de Ingreso: marzo-2001
Ubicación: Gran Canaria
Mensajes: 381
Antigüedad: 24 años, 1 mes
Puntos: 2
por ejemplo puedes usar algo asi:


Código:
	Set fsoBorrar = CreateObject("Scripting.FileSystemObject")
	Path =  server.mapPath(rutaDondeEstaElarchivo)&"/"&archivo

	if (fsoBorrar.FileExists(Path)) then
		fsoBorrar.DeleteFile (Path)
	end if

ToKaTa.