Category: Files
DeleteFile(fileName As String)
Boolean
Deletes the named file and returns True when the deletion succeeds.
If the file does not exist or cannot be removed, the result is False.
If FileExists("save.tmp") Then
DeleteFile("save.tmp")
End If