且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何获取Node.js目录中存在的所有文件的名称列表?

更新时间:2023-09-27 23:44:58

你可以使用 fs.readdir fs.readdirSync 方法。

You can use the fs.readdir or fs.readdirSync methods.

fs.readdir

const testFolder = './tests/';
const fs = require('fs');

fs.readdir(testFolder, (err, files) => {
  files.forEach(file => {
    console.log(file);
  });
})

fs.readdirSync

const testFolder = './tests/';
const fs = require('fs');

fs.readdirSync(testFolder).forEach(file => {
  console.log(file);
})

两种方法的区别在于第一种方法是异步的,所以你必须提供一个在读取过程结束时执行的回调函数。

The difference between the two methods, is that the first one is asynchronous, so you have to provide a callback function that will be executed when the read process ends.

第二个是同步的,它将返回文件名数组,但它将停止进一步执行代码,直到读取过程结束。

The second is synchronous, it will return the file name array, but it will stop any further execution of your code until the read process ends.