delete
Delete files (or graph objects).
Syntax
Section titled “Syntax”delete(filename)Description
Section titled “Description”Deletes the named file(s) from the filesystem. Wildcards supported. Operation is permanent — files are not moved to a trash / recycle bin.
Also doubles as a handle-deletion function: delete(h) for a graph handle removes that object from its chart. The interpreter dispatches based on argument type (string vs handle).
Examples
Section titled “Examples”delete('temp.csv')delete('cache/*.tmp')