electron/docs-translations/ko-KR/api/shell.md
Plusb Preco 962134c612 Cleanup docs
* Adjust line wrap to 80
* Fix typos
* Improve grammar
2015-11-20 04:46:05 +09:00

1.3 KiB

shell

shell 모듈은 데스크톱 환경 통합에 관련한 유틸리티를 제공하는 모듈입니다.

다음 예제는 설정된 URL을 유저의 기본 브라우저로 엽니다:

const shell = require('electron').shell;
shell.openExternal('https://github.com');

Methods

shell 모듈은 다음과 같은 메서드를 가지고 있습니다:

shell.showItemInFolder(fullPath)

  • fullPath String

지정한 파일을 탐색기에서 보여줍니다. 가능한 경우 탐색기 내에서 파일을 선택합니다.

shell.openItem(fullPath)

  • fullPath String

지정한 파일을 데스크톱 기본 프로그램으로 엽니다.

shell.openExternal(url)

  • url String

제공된 외부 프로토콜 URL을 기반으로 데스크톱의 기본 프로그램으로 엽니다. (예를 들어 mailto: URL은 유저의 기본 이메일 에이전트로 URL을 엽니다.)

역주: 폴더는 'file:\\C:\'와 같이 지정하여 열 수 있습니다. (Windows의 경우)

shell.moveItemToTrash(fullPath)

  • fullPath String

Move the given file to trash and returns boolean status for the operation.

지정한 파일을 휴지통으로 이동합니다. 작업의 성공여부를 boolean 형으로 리턴합니다.

shell.beep()

비프음을 재생합니다.