LOTUSSCRIPT LANGUAGE


Kill statement
Example

Deletes a file.

Syntax

Kill fileName

Elements

fileName


Usage

Use Kill with care. If you delete a file with the Kill statement, you can't restore it with LotusScript statements or operating system commands. Make sure the file is closed before you attempt to delete it.

Kill deletes files, not directories. To remove directories, use the RmDir statement.

Example
See Also