|
GetTempFile
DescriptionCreates
a temporary file in a directory whose name starts with (at most)
the first three characters of prefix.
ReturnsName
of a temporary file, as a string.
Function syntaxGetTempFile(dir, prefix)
Parameters
Parameter
|
Description
|
dir
|
Directory name
|
prefix
|
Prefix of a temporary file to create in
the dir directory
|
Example<h3>GetTempFile Example</h3>
<p>The temporary directory for this ColdFusion Server is
<cfoutput>#GetTempDirectory()#</cfoutput>.</p>
<p>We have created a temporary file called:
<cfoutput>#GetTempFile(GetTempDirectory(),"testFile")#</cfoutput></p>
|