2013-09-09 15:35:57 +08:00
|
|
|
# shell
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2016-04-21 15:39:12 -07:00
|
|
|
> Manage files and URLs using their default applications.
|
2016-04-21 15:35:29 -07:00
|
|
|
|
2020-04-07 09:55:01 -07:00
|
|
|
Process: [Main](../glossary.md#main-process), [Renderer](../glossary.md#renderer-process) (non-sandboxed only)
|
2016-11-03 10:26:00 -07:00
|
|
|
|
2013-08-14 15:43:35 -07:00
|
|
|
The `shell` module provides functions related to desktop integration.
|
|
|
|
|
2015-08-28 22:28:30 -07:00
|
|
|
An example of opening a URL in the user's default browser:
|
2013-08-14 15:43:35 -07:00
|
|
|
|
|
|
|
```javascript
|
2018-09-14 02:10:51 +10:00
|
|
|
const { shell } = require('electron')
|
2015-08-28 22:28:30 -07:00
|
|
|
|
2016-07-25 18:39:25 -07:00
|
|
|
shell.openExternal('https://github.com')
|
2013-08-14 15:43:35 -07:00
|
|
|
```
|
|
|
|
|
2020-04-07 09:55:01 -07:00
|
|
|
**Note:** While the `shell` module can be used in the renderer process, it will not function in a sandboxed renderer.
|
|
|
|
|
2015-08-28 22:28:30 -07:00
|
|
|
## Methods
|
|
|
|
|
|
|
|
The `shell` module has the following methods:
|
|
|
|
|
|
|
|
### `shell.showItemInFolder(fullPath)`
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2021-11-16 05:13:18 +01:00
|
|
|
* `fullPath` string
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2016-09-25 12:59:30 +13:00
|
|
|
Show the given file in a file manager. If possible, select the file.
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2019-11-07 23:08:43 -08:00
|
|
|
### `shell.openPath(path)`
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2021-11-16 05:13:18 +01:00
|
|
|
* `path` string
|
2019-11-07 23:08:43 -08:00
|
|
|
|
2021-11-16 05:13:18 +01:00
|
|
|
Returns `Promise<string>` - Resolves with a string containing the error message corresponding to the failure if a failure occurred, otherwise "".
|
2016-09-25 12:59:30 +13:00
|
|
|
|
|
|
|
Open the given file in the desktop's default manner.
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2019-01-14 20:35:21 -08:00
|
|
|
### `shell.openExternal(url[, options])`
|
|
|
|
|
2021-11-16 05:13:18 +01:00
|
|
|
* `url` string - Max 2081 characters on windows.
|
2019-01-14 20:35:21 -08:00
|
|
|
* `options` Object (optional)
|
2021-11-16 05:13:18 +01:00
|
|
|
* `activate` boolean (optional) _macOS_ - `true` to bring the opened application to the foreground. The default is `true`.
|
|
|
|
* `workingDirectory` string (optional) _Windows_ - The working directory.
|
2023-02-14 09:53:18 +01:00
|
|
|
* `logUsage` boolean (optional) _Windows_ - Indicates a user initiated launch that enables tracking of frequently used programs and other behaviors.
|
|
|
|
The default is `false`.
|
2019-01-14 20:35:21 -08:00
|
|
|
|
|
|
|
Returns `Promise<void>`
|
|
|
|
|
|
|
|
Open the given external protocol URL in the desktop's default manner. (For example, mailto: URLs in the user's default mail agent).
|
2016-02-02 23:01:00 -08:00
|
|
|
|
2020-09-02 10:32:33 -07:00
|
|
|
### `shell.trashItem(path)`
|
|
|
|
|
2021-11-16 05:13:18 +01:00
|
|
|
* `path` string - path to the item to be moved to the trash.
|
2020-09-02 10:32:33 -07:00
|
|
|
|
|
|
|
Returns `Promise<void>` - Resolves when the operation has been completed.
|
|
|
|
Rejects if there was an error while deleting the requested item.
|
|
|
|
|
|
|
|
This moves a path to the OS-specific trash location (Trash on macOS, Recycle
|
|
|
|
Bin on Windows, and a desktop-environment-specific location on Linux).
|
|
|
|
|
2015-08-28 22:28:30 -07:00
|
|
|
### `shell.beep()`
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2013-08-29 16:37:51 +02:00
|
|
|
Play the beep sound.
|
2016-07-27 16:47:24 +09:00
|
|
|
|
|
|
|
### `shell.writeShortcutLink(shortcutPath[, operation], options)` _Windows_
|
|
|
|
|
2021-11-16 05:13:18 +01:00
|
|
|
* `shortcutPath` string
|
|
|
|
* `operation` string (optional) - Default is `create`, can be one of following:
|
2016-07-27 16:47:24 +09:00
|
|
|
* `create` - Creates a new shortcut, overwriting if necessary.
|
|
|
|
* `update` - Updates specified properties only on an existing shortcut.
|
|
|
|
* `replace` - Overwrites an existing shortcut, fails if the shortcut doesn't
|
|
|
|
exist.
|
2016-09-28 20:00:01 +13:00
|
|
|
* `options` [ShortcutDetails](structures/shortcut-details.md)
|
2016-07-27 16:47:24 +09:00
|
|
|
|
2021-11-16 05:13:18 +01:00
|
|
|
Returns `boolean` - Whether the shortcut was created successfully.
|
2016-09-25 12:59:30 +13:00
|
|
|
|
|
|
|
Creates or updates a shortcut link at `shortcutPath`.
|
2016-07-27 16:47:24 +09:00
|
|
|
|
|
|
|
### `shell.readShortcutLink(shortcutPath)` _Windows_
|
|
|
|
|
2021-11-16 05:13:18 +01:00
|
|
|
* `shortcutPath` string
|
2016-08-25 14:43:06 -07:00
|
|
|
|
2016-10-05 09:35:23 +11:00
|
|
|
Returns [`ShortcutDetails`](structures/shortcut-details.md)
|
2016-09-25 12:59:30 +13:00
|
|
|
|
|
|
|
Resolves the shortcut link at `shortcutPath`.
|
2016-07-27 16:47:24 +09:00
|
|
|
|
|
|
|
An exception will be thrown when any error happens.
|