| 
   Available in LEADTOOLS Imaging Pro, Vector, Document, and Medical Imaging toolkits.  | 
LFileSettings::GetTempDirectory
#include "ltwrappr.h"
static L_INT LFileSettings::GetTempDirectory(pszTempDir, uSize)
| 
 L_TCHAR *pszTempDir;  | 
 /* pointer to a buffer to be updated */  | 
| 
 L_UINT uSize;  | 
 /* size (in bytes) of the buffer pointed by pszTempDir */  | 
Gets the current temporary directory.
| 
 Parameter  | 
 Description  | 
| 
 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).  | 
| 
 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
| 
 SUCCESS  | 
 The function was successful.  | 
| 
 < 1  | 
 An error occurred. Refer to Return Codes.  | 
Required DLLs and Libraries
| 
 LTFIL For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.  | 
See Also
| 
 Functions:  | 
 LMemoryFile::SetMemoryThresholds, LMemoryFile::GetMemoryThresholds, LFileSettings::SetTempDirectory  | 
| 
 Topics:  | 
|
| 
 
  | 
Example
L_INT LFileSettings__GetTempDirectoryExample()
{
   L_INT nRet;
   L_TCHAR aTempDir[_MAX_PATH]; 
   nRet = LFileSettings::GetTempDirectory(aTempDir, sizeof(aTempDir)); 
   if(nRet != SUCCESS)
      return nRet;
   MessageBox(NULL, aTempDir, TEXT("Current temporary directory"), MB_OK);
   return SUCCESS;
}