查找调用 Windows 程序的快捷方式

发布于 2024-11-25 23:53:23 字数 66 浏览 3 评论 0原文

有没有办法让 Windows 程序找出调用它的快捷方式(即 .lnk 文件)(如果有),以便它可以拾取快捷方式的图标?

Is there a way for a Windows program to find out what shortcut (i.e. .lnk file), if any, it was invoked from, so that it can pick up the shortcut's icon?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

勿忘初心 2024-12-02 23:53:23

您可以调用 GetStartupInfo() 填写 STARTUPINFO 结构。如果设置了 STARTF_TITLEISLINKNAME 标志,则 STARTUPINFO::lpTitle 字段包含 .lnk 文件的路径。

(这在很长一段时间内未记录。它可能一直有效到Win95) 。

You can call GetStartupInfo() to fill a STARTUPINFO structure. If the STARTF_TITLEISLINKNAME flag is set, the STARTUPINFO::lpTitle field contains the path to the .lnk file.

(This was undocumented for a long time. It probably works all the way back to Win95).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文