如何获取Node.js目录中存在的所有文件的名称列表? [英] How do you get a list of the names of all files present in a directory in Node.js?

查看:196
本文介绍了如何获取Node.js目录中存在的所有文件的名称列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用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?

推荐答案

你可以使用 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.

这篇关于如何获取Node.js目录中存在的所有文件的名称列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆