300x250 확장자1 [Node.js] 파일 경로 가져오기. path 모듈의 메소드 이용해서 파일 이름, 폴더 이름, 확장자를 가져올 수 있습니다. var path = require('path'); var fileName = "C:\\Users\\suris\\Downloads\\이슈사항.pptx"; var dirName = path.dirname(fileName); var baseName = path.basename(fileName); var extName = path.extname(fileName); console.log("디렉토리: %s, 파일이름: %s, 확장자: %s", dirName, baseName, extName); // 결과값 디렉토리: C:\Users\suris\Downloads, 파일이름: 이슈사항.pptx, 확장자: .pptx 2021. 1. 30. 이전 1 다음 300x250