在C ++中使用Windows获取Windows文件夹是否有可靠的API? 我使用以下方式,但它失败了。
BOOL CQUserInfoHelper::GetWindowsPath(CString& strWindowsPath)
{
TCHAR windowsPathTemp[MAX_PATH];
int nSize = MAX_PATH;
::GetWindowsDirectory(
windowsPathTemp,
nSize);
strWindowsPath = windowsPathTemp;
return TRUE;
}
答案 0 :(得分:5)
试试这个 -
const DWORD dwBufferLength = 65537;
CStringW strBuffer;
if (!::GetCurrentDirectory( dwBufferLength ,
strBuffer.GetBuffer(dwBufferLength)) )
return L"";
...
strBuffer.ReleaseBuffer();