How do I get the application data path in Windows using C++?

前端 未结 3 1242
北恋
北恋 2020-12-01 10:54

I looked all over the internet and there doesn\'t seem to be a decent solution that I could find. I want to be able to programmatically in C++ obtain the path \"%ALLUSERSPRO

3条回答
  •  旧时难觅i
    2020-12-01 11:12

    Just to suppliment interjay's answer

    1. I had to include shlobj.h to use SHGetFolderPath.

    2. Often you may need to read a file from appdata, to do this you need to use the pathAppend function (shlwapi.h is needed for this).

    #include 
    #pragma comment(lib,"shlwapi.lib")
    #include "shlobj.h"
    
    TCHAR szPath[MAX_PATH];
    // Get path for each computer, non-user specific and non-roaming data.
    if ( SUCCEEDED( SHGetFolderPath( NULL, CSIDL_COMMON_APPDATA, NULL, 0, szPath ) ) )
    {
        // Append product-specific path
        PathAppend( szPath, _T("\\My Company\\My Product\\1.0\\") );
    }
    

    See here for more details.

提交回复
热议问题