[node.js] 글목록 출력하기

2889 단어 node.jsnode.js

👌 글목록 출력하기

파일의 디렉토리를 읽어와 글목록을 출력하는 방법을 알아본다

✔ 글 목록을 읽어오는 방법

  • fs.readdir()을 사용하면 파일의 목록을 읽어올 수 있다
fs.readdir('./data', function(error, filelist){
  let list = '';
  let i = 0;
  while(i < filelist.length){
    list = list + `...${filelist[i]}...`;
    i = i + 1;
  }
  let template = `...${list}...`;
})

👍 참고 사이트

좋은 웹페이지 즐겨찾기