[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Return the name of a temporary file.
Source position: osutilsh.inc line 40
function GetTempFileName( |
const Dir: string; |
const Prefix: string |
):string; |
Dir: PChar; |
Prefix: PChar; |
uUnique: DWORD; |
TempFileName: PChar |
):DWORD; |
GetTempFileName returns the name of a temporary file in directory Dir. The name of the file starts with Prefix.
If Dir is empty, the value returned by GetTempDir is used, and if Prefix is empty, 'TMP' is used.
The OnGetTempFile handler 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 GetTempFileName function. |