跳到主要内容

shell

使用默认应用程序管理文件和 URL。

进程: 主进程, 渲染器进程 (仅限非沙盒)

shell 模块提供与桌面集成相关的功能。

在用户默认浏览器中打开 URL 的示例

const { shell } = require('electron')

shell.openExternal('https://github.com')

注意: 虽然 shell 模块可以在渲染器进程中使用,但它在沙盒渲染器中将无法工作。

方法

shell 模块具有以下方法

shell.showItemInFolder(fullPath)

  • fullPath string

在文件管理器中显示给定的文件。如果可能,选择该文件。

shell.openPath(path)

  • path string

返回值 Promise<string> - 如果发生故障,则解析为包含与故障相对应的错误消息的字符串,否则为 ""。

以桌面默认方式打开给定的文件。

shell.openExternal(url[, options])

  • url string - 在 Windows 上最多 2081 个字符。
  • options Object (可选)
    • activate boolean (可选) macOS - true 将打开的应用程序置于前台。默认为 true
    • workingDirectory string (可选) Windows - 工作目录。
    • logUsage boolean (可选) Windows - 指示用户启动的启动,该启动启用对常用程序和其他行为的跟踪。默认为 false

返回值 Promise<void>

以桌面默认方式打开给定的外部协议 URL。(例如,用户默认邮件代理中的 mailto: URL)。

shell.trashItem(path)

  • path string - 要移动到回收站的项目的路径。

返回值 Promise<void> - 操作完成时解析。如果在删除请求的项目时发生错误,则拒绝。

这会将路径移动到特定于操作系统的回收站位置(macOS 上的“废纸篓”,Windows 上的“回收站”,以及 Linux 上特定于桌面环境的位置)。

shell.beep()

播放蜂鸣声。

shell.writeShortcutLink(shortcutPath[, operation], options) Windows

  • shortcutPath string
  • operation string (可选) - 默认为 create,可以是以下之一
    • create - 创建新快捷方式,必要时覆盖。
    • update - 仅在现有快捷方式上更新指定的属性。
    • replace - 覆盖现有快捷方式,如果快捷方式不存在则失败。
  • options ShortcutDetails

返回值 boolean - 快捷方式是否创建成功。

shortcutPath 创建或更新快捷方式链接。

shell.readShortcutLink(shortcutPath) Windows

  • shortcutPath string

返回值 ShortcutDetails

解析 shortcutPath 处的快捷方式链接。

当发生任何错误时,将抛出异常。