Metodo ASP DeleteFile


❮ Riferimento completo dell'oggetto FileSystemObject

Il metodo DeleteFile elimina uno o più file specificati.

Nota: si verificherà un errore se si tenta di eliminare un file che non esiste.

Sintassi

FileSystemObject.DeleteFile(filename[,force])

Parameter Description
filename Required. The name of the file or files to delete (Wildcards are allowed)
force Optional. A Boolean value that indicates whether read-only files will be deleted. True indicates that the read-only files will be deleted, False indicates that they will not be deleted. Default is False

Esempio

<%
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
%>

❮ Riferimento completo dell'oggetto FileSystemObject