Deletes a temporary file generated with TempFileName()
KillTempFile path$
path$:sexp; path name
KillTempFile path$ deletes the file whose pathname is given in path$.
Local path$ = TempFileName("")
Print path$
KillTempFile path$
Print Exist(path$)
A file created with the TempFileName function is automatically deleted when the programs exits. KillTempFile is used when a temporary file is to be deleted explicitly.
{Created by Sjouke Hamstra; Last updated: 11/10/2014 by James Gaite}