如何在Windows脚本中获取快捷方式的目标路径?

发布于 2024-08-08 21:45:39 字数 132 浏览 5 评论 0原文

从我到目前为止所读到的内容来看,您可以获得 Shortcut 类对象的 TargetPath 属性,这是 WScript.Shell 的 CreateShortcut 方法的结果。

但我还没有找到任何方法来获取现有快捷方式的目标路径。

From what I have read until now, you can get the TargetPath property of an objet of class Shortcut, which is the result of the method CreateShortcut of WScript.Shell.

But I have not found any way to get the target path of an existing shortcut.

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

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

发布评论

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

评论(2

最单纯的乌龟 2024-08-15 21:45:39

在 javascript 中:

var sh = WScript.CreateObject("WScript.Shell");
var sc = sh.CreateShortcut(shortcutPath);
var targePath = sc.TargetPath;

我花了一些时间才理解它。所以我想至少会有一个人很高兴在这里找到答案。

In javascript:

var sh = WScript.CreateObject("WScript.Shell");
var sc = sh.CreateShortcut(shortcutPath);
var targePath = sc.TargetPath;

It took me some time to understand it. So I guess there will be at least one person happy to find the answer here.

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