Difference between revisions of "TMPNAM()"

From Recital Documentation Wiki
Jump to: navigation, search
(Description)
(Description)
Line 11: Line 11:
  
 
==Description==
 
==Description==
The TMPNAM() function returns a character string containing a unique temporary filename.  Filenames returned by the TMPNAM() function have the extension ".tmp".  The TMPNAM() function is particularly useful in multi-user applications where a unique temporary file can be created for each user process. The optional <expC1> specifies a directory where the temporary filename will created. The optional <expC2> specifies a file extension to use other than the default one of '.tmp'.
+
The TMPNAM() function returns a character string containing a unique temporary filename.  Filenames returned by the TMPNAM() function have the extension ".tmp".  The TMPNAM() function is particularly useful in multi-user applications where a unique temporary file can be created for each user process. The optional argument <expC1> specifies a directory where the temporary filename will created. The optional argument <expC2> specifies a file extension to use other than the default one of '.tmp'.
  
 
==Example==
 
==Example==

Revision as of 01:46, 17 June 2010

Purpose

Function to return temporary file name function


Syntax

TMPNAM( [<expC1> [,<expC2>]] )

See Also

GETENV(), GETGID(), GETUID(), GETPID(), RAND()


Description

The TMPNAM() function returns a character string containing a unique temporary filename. Filenames returned by the TMPNAM() function have the extension ".tmp". The TMPNAM() function is particularly useful in multi-user applications where a unique temporary file can be created for each user process. The optional argument <expC1> specifies a directory where the temporary filename will created. The optional argument <expC2> specifies a file extension to use other than the default one of '.tmp'.

Example

name = tmpnam()
report form Listing for event = "BALLET" to file &name
print &name


Products

Recital, Recital Server