electron/docs-translations/ko-KR/api/shell.md

48 lines
1.3 KiB
Markdown
Raw Normal View History

2015-06-25 17:32:51 +00:00
# shell
2015-09-02 16:12:54 +00:00
`shell` 모듈은 데스크톱 환경 통합에 관련한 유틸리티를 제공하는 모듈입니다.
2015-06-25 17:32:51 +00:00
2015-09-02 16:12:54 +00:00
다음 예제는 설정된 URL을 유저의 기본 브라우저로 엽니다:
2015-06-25 17:32:51 +00:00
```javascript
const shell = require('electron').shell;
2015-06-25 17:32:51 +00:00
shell.openExternal('https://github.com');
```
2015-09-02 16:12:54 +00:00
## Methods
`shell` 모듈은 다음과 같은 메서드를 가지고 있습니다:
### `shell.showItemInFolder(fullPath)`
2015-06-25 17:32:51 +00:00
* `fullPath` String
2015-06-30 18:42:29 +00:00
지정한 파일을 탐색기에서 보여줍니다. 가능한 경우 탐색기 내에서 파일을 선택합니다.
2015-06-25 17:32:51 +00:00
2015-09-02 16:12:54 +00:00
### `shell.openItem(fullPath)`
2015-06-25 17:32:51 +00:00
* `fullPath` String
2015-06-30 18:42:29 +00:00
지정한 파일을 데스크톱 기본 프로그램으로 엽니다.
2015-06-25 17:32:51 +00:00
2015-09-02 16:12:54 +00:00
### `shell.openExternal(url)`
2015-06-25 17:32:51 +00:00
* `url` String
제공된 외부 프로토콜 URL을 기반으로 데스크톱의 기본 프로그램으로 엽니다. (예를 들어
mailto: URL은 유저의 기본 이메일 에이전트로 URL을 엽니다.)
2015-09-02 16:12:54 +00:00
역주: 폴더는 'file:\\\\C:\\'와 같이 지정하여 열 수 있습니다. (Windows의 경우)
2015-06-25 17:32:51 +00:00
2015-09-02 16:12:54 +00:00
### `shell.moveItemToTrash(fullPath)`
2015-06-25 17:32:51 +00:00
* `fullPath` String
Move the given file to trash and returns boolean status for the operation.
2015-06-30 18:42:29 +00:00
지정한 파일을 휴지통으로 이동합니다. 작업의 성공여부를 boolean 형으로 리턴합니다.
2015-09-02 16:12:54 +00:00
### `shell.beep()`
2015-06-25 17:32:51 +00:00
2015-06-30 18:42:29 +00:00
비프음을 재생합니다.