Metodo di eliminazione ASP


❮ Riferimento completo all'oggetto cartella

Il metodo Elimina elimina un file o una cartella specificati.

Sintassi

FileObject.Delete[(force)]

FolderObject.Delete[(force)]

Parameter Description
force Optional. A Boolean value that indicates whether a read-only file or folder are to be deleted. True indicates that a read-only file/folder will be deleted and false indicates that it will not be deleted. Default is false.

Esempio per l'oggetto File

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\test.txt")
f.Delete
set f=nothing
set fs=nothing
%>

Esempio per l'oggetto Folder

<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test")
fo.Delete
set fo=nothing
set fs=nothing
%>

❮ Riferimento completo all'oggetto cartella