nodejs 파일 목록 출력하기

printFileList.js
1
2
3
4
5
6
const fs = require('fs');
const dirPath = '.';

fs.readdir(dirPath, (error, filelist) => {
console.log(filelist);
});
  • 은근히 자주 쓴다
  • dirPath 변수에 원하는 디렉터리의 경로를 적어주어 확인할 수 있다

내가 활용한 곳

    1. .dockerignore 파일을 추가했는데 동작할까? 궁금해서
    1. 람다 실행환경 디렉터리 구조 파악
Author

chinsung

Posted on

2020-10-16

Updated on

2022-01-11

Licensed under

댓글