Class: SoftArtisans.SAFile
Method: CreateTemp ([out] TempFilename)
Description: This method creates a temporary file in the directory specified by the Path property. The resultant filename, including path is returned.
Temporary files have the format "SAnnn.TMP", where nnn is a unique string.
If no Path was previously set, SA-FileUp will use the system-defined Temporary Path (which is returned by the WIN32 GetTempPath() routine). Typically, this is "C:\TEMP".
The Path may be set by either SAFile (file specific) Path property, or by the FileUp (for all files) Path property.
Example:
<%
set objFile = Server.CreateObject("SoftArtisans.SAFile")
objFile.Path "d:\tempdir"
objFile.CreateTemp NewTempFilename
... %>