Node.js에서 파일 경로와 함께 작동하는 3가지 코드 조각
1. 경로에서 파일명을 추출하는 방법
const path = require('path');
let file = path.basename('/home/joe/image.png');
require('path')
- 파일/디렉터리 경로와 함께 작동하는 모듈, .basename(
- 지정된 경로의 파일 이름 부분 반환, /home/joe/image.png
- 파일 이름을 추출할 샘플 경로. Original version , improve this code .
2. 파일 확장자를 얻는 방법
const path = require('path');
let ext = path.extname('image.png');
require('path')
- 파일/디렉터리 경로와 함께 작동하는 모듈, .extname(
- 지정된 경로 문자열의 확장을 반환합니다. image.png
- 확장자를 가져올 샘플 파일 경로. Original version , improve this code .
3. 경로 dirname을 얻는 방법
const path = require('path');
let dir = path.dirname('/home/joe/image.png');
require('path')
- 파일/디렉터리 경로와 함께 작동하는 모듈, .dirname(
- 지정된 경로의 dir 부분 반환, /home/joe/image.png
- dir을 반환할 샘플 경로입니다. Original version , improve this code .
Reference
이 문제에 관하여(Node.js에서 파일 경로와 함께 작동하는 3가지 코드 조각), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nonunicorn/3-code-pieces-to-work-with-file-path-in-nodejs-376o텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)