본문 바로가기

컴퓨터/Electron

Electron path

const path = require('path');

// 현재 모듈 파일이 위치한 디렉토리의 절대 경로
const __dirname = path.resolve();

// 현재 모듈 파일이 위치한 디렉토리와 상대 경로를 결합한 절대 경로
const filePath = path.join(__dirname, 'data', 'file.txt');

'컴퓨터 > Electron' 카테고리의 다른 글

Electron Reload  (0) 2023.04.26
Electron 환경변수  (0) 2023.04.26
Electron HTML 보여주기  (0) 2023.04.24
Electron 모듈화  (0) 2023.04.24
Electron 상단 메뉴 (main menu)  (0) 2023.04.24