Deletes files from a disk.
Kill pathname
The pathname argument is a string expression that specifies one or more filenames to be deleted. The pathname may include the directory or folder, and the drive.
In Microsoft Windows, Kill supports the use of * (multiple character) and ? (single character) wildcards to specify multiple files.
An error also occurs if you try to use Kill to delete an open file.
To delete directories, use the RmDir statement.
RmDir Statement.
This example uses the Kill statement to delete a file from a disk.
' Assume TESTFILE is a file containing some data."TestFile" ' Delete file. ' In Microsoft Windows: ' Delete all *.TXT files in current directory."*.TXT"