Member of the support class.
delete(filename)
Deletes a file.
| Name | Description |
| filename | Specifies the path to the file you want to delete. If filename is a relative path, LabVIEW begins searching for the file in the current working directory. filename can include the wildcards ? and *. filename is a string. |
fid = fopen('filename.txt', 'a');
fclose(fid);
delete('filename.txt')