static L_INT LFileSettings::GetTempDirectory(pszTempDir, uSize)
Gets the current temporary directory.
Pointer to a buffer to be updated with the directory name. Make sure the buffer is large enough to contain the directory name. (Use a buffer of _MAX_PATH characters).
The size in bytes of the buffer pointed by pszTempDir. If the size is not large enough, the directory name will be truncated.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Win32, x64.
L_INT LFileSettings__GetTempDirectoryExample()
{
L_INT nRet;
L_TCHAR aTempDir[_MAX_PATH+1]={0};
nRet = LFileSettings::GetTempDirectory(aTempDir, _MAX_PATH);
if(nRet != SUCCESS)
return nRet;
MessageBox(NULL, aTempDir, TEXT("Current temporary directory"), MB_OK);
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document