delfile
Deletes a file at the specified path.
function delfile(pathpathstringPath to the file to delete.: string): ()Usage
Delete a temp file
writefile("temp.bin", data)
-- ... use it ...
delfile("temp.bin")Deletes a file at the specified path.
function delfile(pathpathstringPath to the file to delete.: string): ()writefile("temp.bin", data)
-- ... use it ...
delfile("temp.bin")