how would i get the windows Temp folder path?
Printable View
how would i get the windows Temp folder path?
use the GetTempPath API
but don't ask me how with C++ :rolleyes:
i know how to get it in vb, but i need to know C++
try something like:
Code:TCHAR tempPath[MAX_PATH];
GetTempPath(MAX_PATH, tempPath);