gpt4 book ai didi

c++ - 如何获取快捷目标

转载 作者:行者123 更新时间:2023-11-28 08:18:55 26 4
gpt4 key购买 nike

我需要能够读取快捷方式的目标(.lnk 文件)。

我用 Google 搜索了这个并找到了许多有用的结果: http://cboard.cprogramming.com/windows-programming/62962-ishelllink-getpath-dev-cplusplus.html http://www.go4answers.com/Example/get-shortcut-target-cpp-win64-216615.aspx http://msdn.microsoft.com/en-us/library/bb776891%28VS.85%29.aspx http://www.codeproject.com/KB/shell/create_shortcut.aspx

有些网页没有提到我需要哪些头文件,我也不知道如何找到这些信息。

我目前尝试使用的代码是这样的:

#include <windows.h>
#include <string>

#include <objidl.h> /* For IPersistFile */
#include <shlobj.h> /* For IShellLink */

using namespace std;

int main(void)
{

IShellLink* psl;
wchar_t* tempStr = new wchar_t[MAX_PATH];
string path = "E:\\shortcuts\\myshortcut.lnk";

HRESULT hr = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (LPVOID*) &psl);

if (SUCCEEDED(hr))
{
IPersistFile* ppf;
hr = psl->QueryInterface( IID_IPersistFile, (LPVOID *) &ppf);
if (SUCCEEDED(hr))
{
hr = ppf->Load(path.c_str(), STGM_READ);

if (SUCCEEDED(hr))
{
WIN32_FIND_DATA wfd;
psl->GetPath(tempStr, MAX_PATH, &wfd, SLGP_UNCPRIORITY | SLGP_RAWPATH);
}
}
}
return 0;
}

你可能会看到这主要来自上面的网站之一,但是他们没有提到他们使用了哪些 header ,所以我很好地猜测(这似乎有效)使用了哪些 header 。

目前我得到的错误是:

In function 'int main()':
24|error: no matching function for call to 'IPersistFile::Load(const char*, int)'
29|error: no matching function for call to 'IShellLinkA::GetPath(wchar_t*&, int, WIN32_FIND_DATA*, int)'
||=== Build finished: 2 errors, 0 warnings ===|

我希望有人可以就此给我一些建议,无论是只是将我指向一些更好的链接,还是更好,可能解释上面的代码,如何找出要使用的 header 以及在哪里使用我错了,或者完全不同的解决方案达到了相同的结果。

最佳答案

所有 header 都很好,但是您错误地使用了宽(基于 wchar_t)和“普通”(基于字符)字符串:IPersistFile::Load 采用宽字符串,而 IShellLinkA::GetPath 采用普通字符串。使用它应该编译:

IShellLinkA* psl; //specify the ansi version explicitely
CoInitialize( 0 ); //you forgot this, needed for all COM calls to work
char* tempStr = new char[ MAX_PATH ];
std::wstring path = L"E:\\shortcuts\\myshortcut.lnk";

此外,如果您只需要路径,您可以只传递 0 而不是指向 WIN32_FIND_DATA 的指针。

关于c++ - 如何获取快捷目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6676779/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com