Node.js 内置模块fs的readdir方法 查看某个文件夹里面包含的文件内容

Posted hros

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js 内置模块fs的readdir方法 查看某个文件夹里面包含的文件内容相关的知识,希望对你有一定的参考价值。

fs.readdir(path[, options], callback)

例:

"use strict";
const fs = require("fs");
const path = require("path");

//获取当前文件所在的绝对路径
let filepath = path.resolve();
fs.readdir(filepath, "utf-8", function(err, files)
  if(err)
    console.log(err);
   else
    console.log(files);
  
);

注:第二个参数不写的话默认为 "utf-8"

 

以上是关于Node.js 内置模块fs的readdir方法 查看某个文件夹里面包含的文件内容的主要内容,如果未能解决你的问题,请参考以下文章

Node.js fs.readdir 递归目录搜索

Node.js fs.readdir 递归目录搜索

Node.js之文件及文件流(fs,path,buffer,stream)

Node.js——fs模块(文件系统),创建删除目录(文件),读取写入文件流

Node.js中内置文件系统一些常用的方法总结

十Node.js-fs模块(上)