컴퓨터/Electron
Electron path
sayyesdoit
2023. 4. 24. 15:38
const path = require('path');
// 현재 모듈 파일이 위치한 디렉토리의 절대 경로
const __dirname = path.resolve();
// 현재 모듈 파일이 위치한 디렉토리와 상대 경로를 결합한 절대 경로
const filePath = path.join(__dirname, 'data', 'file.txt');