Difference between revisions of "SET TMPNAMPATH"

From Lianjapedia
Jump to: navigation, search
 
Line 6: Line 6:
  
 
==See Also==
 
==See Also==
[[DB_TMPDIR]], [[GETENV()]], [[GETGID()]], [[GETUID()]], [[GETPID()]], [[RAND()]], [[SET TMPDIR]], [[SYS()]], [[TMPNAM()]]
+
[[GETENV()]], [[GETGID()]], [[GETUID()]], [[GETPID()]], [[RAND()]], [[SET TMPDIR]], [[SYS()]], [[TMPDIR()]], [[TMPNAM()]]
  
 
==Description==
 
==Description==

Latest revision as of 10:01, 3 January 2013

Purpose

Determines whether the full path is included for temporary file name functions

Syntax

SET TMPNAMPATH ON | OFF | (<expL>)

See Also

GETENV(), GETGID(), GETUID(), GETPID(), RAND(), SET TMPDIR, SYS(), TMPDIR(), TMPNAM()

Description

The SET TMPNAMPATH command determines whether the full path is included for the temporary file name functions TMPNAM() and SYS(3). If SET TMPNAMPATH is ON (default), SYS(3) and TMPNAM() will return filenames including the full path. If SET TMPNAMPATH is OFF, only the base filename will be returned. Note: unique filenames cannot be guaranteed if SET TMPNAMPATH is OFF.

Example

? tmpnam()
C:\Users\Me\AppData\Local\Temp\_00000a7a0001.tmp
set tmpnampath off
? tmpnam()
_00000a7a0002.tmp