我正在从csv文件中检索图像。 现在,我可以管理。
目录是这样的
├── assets
├── export
├── img1.jpeg
├── img2.jpeg
├── img3.jpeg
├── ...
如何从导出目录中获取所有imgs路径?。
答案 0 :(得分:1)
看着node doc就像这样。
const dirnameExportImg = './assets/export'
fs.readdir(dirnameExportImg, function (err, files) {
if (err) {
console.log(err)
}
files.map(
(file) => { console.log(file) }
)
})
答案 1 :(得分:0)
我认为这篇文章可能对您有用 StackOverflow - Reading all files
第一个答案非常好地描述了如何遍历目录中的多个文件并将其存储到对象中。