我正在使用节点8.10.0.
fs.readdir()返回文件名和子目录名称的数组,或 fs.Dirents[]
.
我无法让它发挥作用.这是一个简单的例子:
console.log(require("fs").readdirSync("/",{withFileTypes:true}));
这给了我一个字符串数组(例如[“bin”,“mnt”,“usr”,“var”,…]),而不是fs.Dirent对象的数组(这就是我想要的).
我如何让它工作?
在v10.10.0中
添加了必需的
功能,您必须更新节点.
原文链接:https://www.f2er.com/nodejs/241090.html