home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / gettempfile.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  491 b   |  21 lines

  1. <!--- This example uses GetTempDirectory to find
  2. the temporary directory, and GetTempFile to place
  3. a dummy file in that directory --->
  4. <HTML>
  5. <HEAD>
  6. <TITLE>
  7. GetTempFile Example
  8. </TITLE>
  9. </HEAD>
  10.  
  11. <BODY>
  12. <H3>GetTempFile Example</H3>
  13.  
  14. <P>The temporary directory for this
  15. Cold Fusion server is <CFOUTPUT>#GetTempDirectory()#</CFOUTPUT>.
  16. <P>We have created a temporary file called:
  17. <CFOUTPUT>#GetTempFile("#GetTempDirectory()#","testFile")#</CFOUTPUT>
  18.  
  19. </BODY>
  20. </HTML>       
  21.