[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Return the name of a temporary file.
Source position: line 0
function GetTempFileName( |
const Dir: String; |
const Prefix: String |
):String; |
Dir: PChar; |
Prefix: PChar; |
uUnique: DWORD; |
TempFileName: PChar |
):DWORD; |
GetTempFileNamereturns the name of a temporary file in directory Dir. The name of the file starts with Prefix.
If Diris empty, the value returned by GetTempDiris used, and if Prefixis empty, 'TMP' is used.
The OnGetTempFilehandler may be set to provide custom handling of this routine: One could implement callbacks which take into consideration frameworks like KDE or GNOME, and return a different value from the default system implementation.
On error, an empty string is returned.
|
Return name of system's temporary directory |
|
|
Handler for GetTempFileNamefunction. |