LFileSettings::GetTempDirectory

Summary

Gets the current temporary directory.

Syntax

#include "ltwrappr.h"

static L_INT LFileSettings::GetTempDirectory(pszTempDir, uSize)

Parameters

L_TCHAR *pszTempDir

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).

L_UINT uSize

The size in bytes of the buffer pointed by pszTempDir. If the size is not large enough, the directory name will be truncated.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

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 Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.