获取所有用户的路径' Windows

时间:2015-10-12 20:49:58

标签: c++ windows path startmenu

我正在寻找一种方法来检索C ++中所有用户开始菜单目录的路径。我只能得到当前用户之一(使用Qt):

QString startMenuPath = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation).at(0);

但是,Qt不允许为所有用户检索一个。据我所知,还没有包含该路径的环境变量,我可以阅读。

3 个答案:

答案 0 :(得分:6)

要获取已知文件夹,请使用SHGetFolderPath,并为所需文件夹传递KNOWNFOLDERIDCSIDL

例如,以下代码获取所有用户Start MenuPrograms文件夹:

// Remember to #include <Shlobj.h>

WCHAR path[MAX_PATH];

HRESULT hr = SHGetFolderPathW(NULL, CSIDL_COMMON_PROGRAMS, NULL, 0, path);
if (SUCCEEDED(hr))
    std::wcout << L"Start Menu\Programs: " << path << std::endl;

hr = SHGetFolderPathW(NULL, CSIDL_COMMON_STARTMENU, NULL, 0, path);
if (SUCCEEDED(hr))
    std::wcout << L"Start Menu: " << path << std::endl;

答案 1 :(得分:2)

感谢用户theB提供的解决方案。这是我在Windows上使用所有用户开始菜单创建快捷方式的最后一段代码(使用Qt):

#include <shlobj.h>

bool createStartMenuEntry(QString targetPath) {
    targetPath = QDir::toNativeSeparators(targetPath);

    WCHAR startMenuPath[MAX_PATH];
    HRESULT result = SHGetFolderPathW(NULL, CSIDL_COMMON_PROGRAMS, NULL, 0, startMenuPath);

    if (SUCCEEDED(result)) {
        QString linkPath = QDir(QString::fromWCharArray(startMenuPath)).absoluteFilePath("Some Link.lnk");

        CoInitialize(NULL);
        IShellLinkW* shellLink = NULL;
        result = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_ALL, IID_IShellLinkW, (void**)&shellLink);
        if (SUCCEEDED(result)) {
            shellLink->SetPath(reinterpret_cast<LPCWSTR>(targetPath.utf16()));
            shellLink->SetDescription(L"Description");
            shellLink->SetIconLocation(reinterpret_cast<LPCWSTR>(targetPath.utf16()), 0);

            IPersistFile* persistFile;
            result = shellLink->QueryInterface(IID_IPersistFile, (void**)&persistFile);

            if (SUCCEEDED(result)) {
                result = persistFile->Save(reinterpret_cast<LPCOLESTR>(linkPath.utf16()), TRUE);

                persistFile->Release();
            } else {
                return false;
            }
            shellLink->Release();
        } else {
            return false;
        }
    } else {
        return false;
    }
    return true;
}

答案 2 :(得分:-2)

任何用户开始菜单的路径都是(在Windows 7上)

  

C:\ Users \ memset( &s, 0, sizeof(struct stat) ); \ AppData \ Roaming \ Microsoft \ Windows \ Start Menu

对于“所有用户”开始菜单(在Windows 7中),它是

  

C:\ ProgramData \ Microsoft \ Windows \ Start Menu

但是,只有管理员和用户自己才能自由访问每个用户的文件夹;其他人都缺乏读/写权限。您可以通过以管理员身份运行程序来规避这一点,但您可能希望重新考虑您的程序设计,因为依赖于对系统管理文件夹的访问的解决方案在设计上会变得不稳定。