shell
模块提供与 桌面集成 相关的功能,如点击url时调用默认浏览器
使用默认浏览器打开链接:
const {shell} = require('electron')
shell.openExternal('https://github.com')
用途:判断是否在文件管理器中显示并选中指定文件(
Boolean
)
fullPath
String
用途:判断是否用默认程序打开指定文件(
Boolean
)
fullPath
String
用途:判断链接是否关联的默认程序打开,如
mailto:
以邮件程序打开(Boolean
)
url
Stringoptions
Object (可选) macOSactivate
Boolean -true
将打开默认应用程序。默认值为true
。
callback
Function (可选) -指定后将执行异步打开. macOSerror
Error
用途:判断是否将指定项目扔到回收站(
Boolean
)
fullPath
String
用途:播放蜂鸣声
用途:判断是否成功创建或更新,覆盖快捷方式(
Boolean
)
shortcutPath
Stringoperation
String (可选) - 操作方式,默认为create
,可选:create
- 创建新的快捷方式,已存在则覆盖。update
-仅在现有快捷方式上更新指定的属性replace
- 覆盖现有快捷方式,如果快捷方式不存在则失败。
options
ShortcutDetails
用途:读取链接至指定路径
shortcutPath
的快捷方式([
ShortcutDetails](structures/shortcut-details.md)
)
shortcutPath
String
发生任何错误时将抛出异常。