Metoda ASP DeleteFile


❮ Kompletní reference objektu FileSystemObject

Metoda DeleteFile odstraní jeden nebo více zadaných souborů.

Poznámka: Pokud se pokusíte odstranit soubor, který neexistuje, dojde k chybě.

Syntax

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

Příklad

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

❮ Kompletní reference objektu FileSystemObject