Deletes a file from the file system.
Paths must use forward slashes instead of back-slashes.
If the file cannot be deleted for some reason, the command fails. Note that the file is not moved to the recycle bin, but is permanently deleted.
System
deleteFile "filePath" |
Name | Type | Required | Comments |
---|---|---|---|
filePath | string | yes | Full path to the file you want to delete. Be sure to use forward slashes. |
None
void
// Delete a c3d file from the disk deleteFile "D:/SomeProduct/CaptureDay1/Session1/00001.c3d"; |