Generate a name for a temporary file. The file is guaranteed not to already exist in the user's %TEMP% directory.
#include <File.au3>
_TempFile()
Parameters
No parameters.
Return Value
Filename of a temporary file which does not exist.
Remarks
None.
Related
Example
#include <File.au3>
Dim $s_TempFile
$s_TempFile = _TempFile()
MsgBox(4096, "Name suitable for new temporary file", $s_TempFile)
Exit