gpt4 book ai didi

node.js - 访问 Node 上的 Windows 快捷方式 (.lnk) 数据

转载 作者:可可西里 更新时间:2023-11-01 11:44:34 28 4
gpt4 key购买 nike

有什么方法可以解析 Node 中 .lnk 文件的快捷方式数据(例如,主要是它指向的路径)?

最佳答案

如果您使用 Electron ,它有一个内置的方法:

https://www.electronjs.org/docs/api/shell#shellreadshortcutlinkshortcutpath-windows

import { shell } from 'electron';

const parsed = shell.readShortcutLink(shortcutPath);
  • target String - 从此快捷方式启动的目标。
  • cwd String(可选)- 工作目录。默认为空。
  • args String(可选)- 从此快捷方式启动时应用于目标的参数。默认为空。
  • description String(可选)- 快捷方式的描述。默认为空。
  • icon String(可选)- 图标的路径,可以是 DLL 或 EXE。 icon 和 iconIndex 必须一起设置。默认为空,即使用目标的图标。
  • iconIndex Number(可选)- 当图标是 DLL 或 EXE 时图标的资源 ID。默认为 0。
  • appUserModelId String(可选)- 应用程序用户模型 ID。默认为空。

关于node.js - 访问 Node 上的 Windows 快捷方式 (.lnk) 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48610502/

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