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
|
|
|
|
2016-11-03 13:13:21 -07:00
|
|
|
Process: [Main](../tutorial/quick-start.md#main-process), [Renderer](../tutorial/quick-start.md#renderer-process)
|
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
|
2016-07-25 18:39:25 -07: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
|
|
|
```
|
|
|
|
|
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
|
|
|
|
|
|
|
* `fullPath` String
|
|
|
|
|
2016-09-25 12:59:30 +13:00
|
|
|
Returns `Boolean` - Whether the item was successfully shown
|
|
|
|
|
|
|
|
Show the given file in a file manager. If possible, select the file.
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2015-08-28 22:28:30 -07:00
|
|
|
### `shell.openItem(fullPath)`
|
2013-08-14 15:43:35 -07:00
|
|
|
|
|
|
|
* `fullPath` String
|
|
|
|
|
2016-09-25 12:59:30 +13:00
|
|
|
Returns `Boolean` - Whether the item was successfully opened.
|
|
|
|
|
|
|
|
Open the given file in the desktop's default manner.
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2016-10-13 13:28:11 -07:00
|
|
|
### `shell.openExternal(url[, options, callback])`
|
2013-08-14 15:43:35 -07:00
|
|
|
|
|
|
|
* `url` String
|
2016-06-18 15:26:26 +02:00
|
|
|
* `options` Object (optional) _macOS_
|
2016-02-16 15:58:33 -08:00
|
|
|
* `activate` Boolean - `true` to bring the opened application to the
|
|
|
|
foreground. The default is `true`.
|
2016-10-14 12:34:22 -07:00
|
|
|
* `callback` Function (optional) - If specified will perform the open asynchronously. _macOS_
|
2016-11-02 16:29:25 -07:00
|
|
|
* `error` Error
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2016-09-25 12:59:30 +13:00
|
|
|
Returns `Boolean` - Whether an application was available to open the URL.
|
2016-11-02 16:29:25 -07:00
|
|
|
If callback is specified, always returns true.
|
2016-09-25 12:59:30 +13:00
|
|
|
|
2013-08-29 16:37:51 +02:00
|
|
|
Open the given external protocol URL in the desktop's default manner. (For
|
2016-09-25 12:59:30 +13:00
|
|
|
example, mailto: URLs in the user's default mail agent).
|
2016-02-02 23:01:00 -08:00
|
|
|
|
2015-08-28 22:28:30 -07:00
|
|
|
### `shell.moveItemToTrash(fullPath)`
|
2013-08-14 15:43:35 -07:00
|
|
|
|
|
|
|
* `fullPath` String
|
|
|
|
|
2016-09-25 12:59:30 +13:00
|
|
|
Returns `Boolean` - Whether the item was successfully moved to the trash
|
|
|
|
|
2015-08-28 22:28:30 -07:00
|
|
|
Move the given file to trash and returns a boolean status for the operation.
|
2013-08-14 15:43:35 -07:00
|
|
|
|
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_
|
|
|
|
|
|
|
|
* `shortcutPath` String
|
2016-09-26 22:12:51 -07:00
|
|
|
* `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
|
|
|
|
2016-09-25 12:59:30 +13:00
|
|
|
Returns `Boolean` - Whether the shortcut was created successfully
|
|
|
|
|
|
|
|
Creates or updates a shortcut link at `shortcutPath`.
|
2016-07-27 16:47:24 +09:00
|
|
|
|
|
|
|
### `shell.readShortcutLink(shortcutPath)` _Windows_
|
|
|
|
|
2016-08-25 17:26:52 -07: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.
|