目前我正在编写Shell扩展,因为扩展文件上下文菜单的常规方法不符合我的需要,但是我在这里面临同样的问题。
如果我右键单击单个快捷方式(* .lnk文件),我会得到它的目标路径,如果我选择多个文件并右键单击快捷方式我只得到一个文件 - 快捷方式目标文件。
我的shell扩展尚未完成,但枚举文件的部分代码是:
HRESULT CFileContextMenuExt::Initialize(PCIDLIST_ABSOLUTE pidlFolder, IDataObject *pdtobj, HKEY hkeyProgID)
{
HRESULT hr = E_INVALIDARG;
if (NULL == pdtobj)
{
return hr;
}
FORMATETC fe = { CF_HDROP, NULL, DVASPECT_CONTENT, -1, TYMED_HGLOBAL };
STGMEDIUM stm = {};
// pDataObj contains the objects being acted upon. In this example,
// we get an HDROP handle for enumerating the selected files.
if (SUCCEEDED(pdtobj->GetData(&fe, &stm)))
{
// Get an HDROP handle.
HDROP hDrop = static_cast<HDROP>(GlobalLock(stm.hGlobal));
if (hDrop != NULL)
{
// Determine how many files are involved in this operation.
UINT nFiles = DragQueryFile(hDrop, 0xFFFFFFFF, NULL, 0);
if (nFiles != 0)
{
m_selectedFiles.clear();
//Enumerates the selected files and directories.
for (UINT i = 0; i < nFiles; i++)
{
// Get the next filename.
int size = DragQueryFile(hDrop, i, NULL, 0) + 1;
string_t str;
str.resize(size);
if (DragQueryFile(hDrop, i, &str[0], size) == 0)
continue;
m_selectedFiles.push_back(str);
}
hr = S_OK;
}
GlobalUnlock(stm.hGlobal);
}
ReleaseStgMedium(&stm);
}
// If any value other than S_OK is returned from the method, the context
// menu is not displayed.
return hr;
}
有人可以建议如何获得确切的路径而不是目标吗?
答案 0 :(得分:3)
(我不确定以下解决方案是否完全正确,可能在某些情况下它无法正常工作但在标准情况下我已经测试过它可以正常工作)
您必须在*和lnkfile下注册上下文菜单处理程序。这意味着当用户右键单击快捷方式QueryContextMenu时将被调用两次。第一次为快捷方式文件目标,第二次为快捷方式文件本身。但是差别很小。对于快捷方式文件,目标shell始终传递CMF_VERBSONLY,并且快捷方式文件本身不存在此标志。所以只需检查此标志,如果存在则不添加任何内容。