|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
GetTempPath
The GetTempPath function retrieves the path of the directory designated for temporary files. This function supersedes the GetTempDrive function.
DWORD GetTempPath(
DWORD nBufferLength, // size, in characters, of the buffer LPTSTR lpBuffer // address of buffer for temp. path );
Parameters
nBufferLength
Specifies the size, in characters, of the string buffer identified by lpBuffer.
lpBuffer
Points to a string buffer that receives the null-terminated string specifying the temporary file path.
Return Values
If the function succeeds, the return value is the length, in characters, of the string copied to lpBuffer, not including the terminating null character. If the return value is greater than nBufferLength, the return value is the size of the buffer required to hold the path. If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
The GetTempPath function gets the temporary file path as follows:
1. The path specified by the TMP environment variable. 2. The path specified by the TEMP environment variable, if TMP is not defined. 3. The current directory, if both TMP and TEMP are not defined.
See Also
GetTempFileName
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
GetTempPath
Функция GetTempPath извлекает путь директория определенного для временных файлов. Эта функция заменяет функцию GetTempDrive.
DWORD GetTempPath(
DWORD nBufferLength, // РАЗМЕР, в символах, адреса буфера LPTSTR lpBuffer // буфера для temp. пути );
Параметры
nBufferLength
Определяет размер, в символах, буфера строки идентифицированного lpBuffer.
lpBuffer
Точки на буфер строки, что получает недействительный расторгнутую строку, определяющую временный файловый путь.
Обратные Величины
Если функция добивается успеха, обратная величина является длиной, в символах, строки скопированной на lpBuffer, не включая завершающий недействительный символ. Если обратная величина больше, чем nBufferLength, обратная величина является размером буфера требовавшегося, чтобы держать путь. Если функция терпит неудачу, обратная величина нулевая. Для того, чтобы расширять информацию ошибки, назовите GetLastError.
Замечания
Функция GetTempPath получает временный файловый путь следующим образом:
1. Путь определялся переменной среды TMP. 2. Путь определялся переменной среды ТЕМПА, если TMP не определен. 3. Текущий директорий, если как TMP так и ТЕМП не определен.
Смотри Также
GetTempFileName
|
|
|
|
| |