SHGetFolderPath获取特殊目录

https://msdn.microsoft.com/en-us/library/windows/desktop/bb762494.aspx

 

https://blog.csdn.net/u010061748/article/details/72518664

 

wchar_t file_path[MAX_PATH];
std::wstring file_root_path;
if (SHGetFolderPath(NULL, CSIDL_APPDATA, NULL, 0, file_path) != S_OK)
{
return false;
}

C:\\Users\\pc\\AppData\\Roaming

 

所有的软件安装目录在此 软件安装列表

 

posted on 2019-03-20 20:43  lydstory  阅读(234)  评论(0编辑  收藏  举报

导航