官方文档:node.js文件操作
读取文件
fs.readFile(path[, options], callback)
[]表示可选
具体选项可参考文档fs.readFile
const fs = require('fs');
fs.readFile('hello.txt',{
flag:'r',encoding:'utf-8'},function(err,data) {
if(err) {
console.log(err);
}else {
console.log(data);
}
})
问题:如果想要读取多个文件,则这样写需要写很多条。
解决:封装成一个Promise对象
hello.txt
hello2
hello2.txt
hello3
hello3.txt
content
function fsRead(path) {
return new Promise