Currently the best way to create temporary file names is to use ${GUID}, save the name, and add an #on_exit handler to delete the file when exiting. This is inconvenient and susceptible to errors.
Proposed solution
Create a ${TMPFILE TAG} pseudo-global that allows the automatic creation, access, and destruction of temporary filenames.
Background
Currently the best way to create temporary file names is to use
${GUID}
, save the name, and add an#on_exit
handler to delete the file when exiting. This is inconvenient and susceptible to errors.Proposed solution
Create a
${TMPFILE TAG}
pseudo-global that allows the automatic creation, access, and destruction of temporary filenames.