按照手册文档中对fs.stat的recursive参数设置为true时下述语句报错,提示 stats.isDirectory is not a function.
recursive 为 true 时
fs.stat({ path: `${wx.env.USER_DATA_PATH}/testDir`, recursive: true, success: res => { Object.keys(res.stats).forEach(path => { const stats = res.stats[path] console.log(path, stats.isDirectory())
})
}
})
再测试不加参数时以下语句执行正常。
示例代码
recursive 为 false 时
const fs = wx.getFileSystemManager()
fs.stat({ path: `${wx.env.USER_DATA_PATH}/testDir`, success: res => { console.log(res.stats.isDirectory())
}
})
经测试在正常执行的语中添加recursive参数设置为true时不影响上述语句的正常执行。
感觉该参数未生效,经查开发环境的基础库已调整为2.5.2 仍然不行。
https://developers.weixin.qq.com/miniprogram/dev/api/FileSystemManager.statSync.html
代码片段:https://developers.weixin.qq.com/s/iwEfCamx7M68
代码片段有误,麻烦重新确认下,另外下次回复请在评论下回复,单独评论时收不到提醒的哈
谢谢关注,已添加测试环境了。 麻烦了。 https://developers.weixin.qq.com/s/RkqV5cmR7V6F
麻烦提供一下出现问题的机型和微信版本,并且给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题