[Node.js]ファイルリストの取得

2153 ワード

Node.jsで

私が使用しているデータのファイルリストを知りたいとき


我々
Node.js file list in directory
検索
How do you get a list of the names of all files present in a directory in Node.js?
I'm trying to get a list of the names of all the files present in a directory using Node.js. I want output that is an array of filenames. How can I do this?

stackoverflow.com
ここに接続してサンプルコードを検証

var testFolder = './data'; //지금 코드를 작성하고 있는 폴더 내의 data라는 폴더에 파일을 확인하고 싶음
var fs = require('fs');

fs.readdir(testFolder, function(err, filelist) { //파일목록을 filelist라는 변수로 지정
  console.log(filelist); //파일목록을 출력
})


結果値
[ 'CSS', 'HTML', 'JavaScript' ]

dataというフォルダにファイルリストを配列形式で保存する


無駄な時間はない
I'll write something that won't waste your time.