Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any reliable API to Get Windows Folder in Windows in C++? I am using the following way, however it failed.

    BOOL CQUserInfoHelper::GetWindowsPath(CString& strWindowsPath)
    {
        TCHAR windowsPathTemp[MAX_PATH];
        int nSize = MAX_PATH;
        ::GetWindowsDirectory(
            windowsPathTemp,
            nSize);
        strWindowsPath = windowsPathTemp;
        return TRUE;
    }
share|improve this question
"it failed" is not an error description I like to read. – Timbo Jul 1 '10 at 8:33
It do not return XX:\\Windows, but something else. it is reported by my user, I can not debug it on their pc – sxingfeng Jul 1 '10 at 8:36
1  
there are 2 resonses fro that: If the length is greater than the size of the buffer, 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. handle those issues – Arseny Jul 1 '10 at 8:40
You should also always initialize a string buffer to 0 e.g. TCHAR windowsPathTemp[MAX_PATH] = {0} – humbagumba Jul 1 '10 at 8:48
1  
@humbagumba: Why? GetWindowsDirectory() uses it as an [out] parameter. Microsofts internal API check tools guarantee that an [out] paramenter is never read. If it's not read, its contents do not matter. – MSalters Jul 1 '10 at 11:34
show 2 more comments

1 Answer

up vote 4 down vote accepted

Try This -

const DWORD dwBufferLength = 65537;
CStringW strBuffer;

if (!::GetCurrentDirectory(   dwBufferLength , 
                              strBuffer.GetBuffer(dwBufferLength))    ) 
   return L"";

...

strBuffer.ReleaseBuffer();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.