This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Kill Statement Example
This example uses the
Kill statement to delete a file from a disk.
' Assume TESTFILE is a file containing some data.
Kill
"TestFile" ' Delete file.
' Delete all *.TXT files in current directory.
Kill
"*.TXT"