GetTempFileNameA Function
GetTempFileNameA Function
GetTempFileNameA function
12/05/2018 • 3 minutes to read
In this article
Syntax
Parameters
Return Value
Remarks
Requirements
See Also
Creates a name for a temporary file. If a unique file name is generated, an empty file is
created and the handle to it is released; otherwise, only a file name is generated.
Syntax
C++ = Copy
UINT GetTempFileNameA(
LPCSTR lpPathName,
LPCSTR lpPrefixString,
UINT uUnique,
LPSTR lpTempFileName
);
Parameters
lpPathName
The directory path for the file name. Applications typically specify a period (.) for the
current directory or the result of the GetTempPath function. The string cannot be longer
than MAX_PATH–14 characters or GetTempFileName will fail. If this parameter is NULL,
the function fails.
lpPrefixString
https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-gettempfilenamea?redirectedfrom=MSDN 1/4
11/10/2019 GetTempFileNameA function (fileapi.h) - Win32 apps | Microsoft Docs
The null-terminated prefix string. The function uses up to the first three characters of this
string as the prefix of the file name. This string must consist of characters in the OEM-
defined character set.
uUnique
An unsigned integer to be used in creating the temporary file name. For more information,
see Remarks.
If uUnique is zero, the function attempts to form a unique file name using the current
system time. If the file already exists, the number is increased by one and the functions
tests if this file already exists. This continues until a unique filename is found; the function
creates a file by that name and closes it. Note that the function does not attempt to verify
the uniqueness of the file name when uUnique is nonzero.
lpTempFileName
A pointer to the buffer that receives the temporary file name. This buffer should be
MAX_PATH characters to accommodate the path plus the terminating null character.
Return Value
If the function succeeds, the return value specifies the unique numeric value used in the
temporary file name. If the uUnique parameter is nonzero, the return value specifies that
same number.
If the function fails, the return value is zero. To get extended error information, call
GetLastError.
Remarks
The GetTempFileName function creates a temporary file name of the following form:
<path><i><pre><uuuu>.TMP
https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-gettempfilenamea?redirectedfrom=MSDN 2/4
11/10/2019 GetTempFileNameA function (fileapi.h) - Win32 apps | Microsoft Docs
Component Meaning
If uUnique is zero, GetTempFileName creates an empty file and closes it. If uUnique is not
zero, you must create the file yourself. Only a file name is created, because
GetTempFileName is not able to guarantee that the file name is unique.
Only the lower 16 bits of the uUnique parameter are used. This limits GetTempFileName
to a maximum of 65,535 unique file names if the lpPathName and lpPrefixString parameters
remain the same.
Due to the algorithm used to generate file names, GetTempFileName can perform poorly
when creating a large number of files with the same prefix. In such cases, it is
recommended that you construct unique file names based on GUIDs.
Temporary files whose names have been created by this function are not automatically
deleted. To delete these files call DeleteFile.
To avoid problems resulting when converting an ANSI string, an application should call the
CreateFile function to create a temporary file.
Technology Supported
https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-gettempfilenamea?redirectedfrom=MSDN 3/4
11/10/2019 GetTempFileNameA function (fileapi.h) - Win32 apps | Microsoft Docs
Examples
Requirements
Library Kernel32.lib
DLL Kernel32.dll
See Also
CreateFile
DeleteFile
GetTempPath
Yes No
https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-gettempfilenamea?redirectedfrom=MSDN 4/4