electron/docs-translations/jp/api/shell.md
2016-01-18 01:00:28 +09:00

43 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# shell
`shell`モジュールはデスクトップ統合に関係した機能を提供します。
ユーザーのデフォルトのブラウザでURLを開く例です
```javascript
const shell = require('electron').shell;
shell.openExternal('https://github.com');
```
## メソッド
`shell`モジュールは次のメソッドを持ちます:
### `shell.showItemInFolder(fullPath)`
* `fullPath` String
ファイルマネジャーでファイルを表示します。もし可能ならファイルを選択します。
### `shell.openItem(fullPath)`
* `fullPath` String
デスクトップの既定のやり方で指定したファイルを開きます。
### `shell.openExternal(url)`
* `url` String
デスクトップの既定のやり方で指定した外部のプロトコルURLで開きます。例えば、mailto:URLでユーザーの既定メールエージェントを開きます
### `shell.moveItemToTrash(fullPath)`
* `fullPath` String
ゴミ箱へ指定したファイルを移動し、操作結果をブーリアン値を返します。
### `shell.beep()`
ビープ音を再生します。