writeFileSync:fail the maximum size of the file storage limit is exceeded;at socketTask.onmessage callback function
Error: writeFileSync:fail the maximum size of the file storage limit is exceeded
数据缓存文件列表
- errMsg: "getSavedFileList:ok"
- fileList: Array(0)
- length: 0
- nv_length: (...)
- __proto__: Array(0)
- __proto__: Object
软件之前功能正常,突然出现这个问题。
在电脑微信开发工具调试没有问题,真机调试就会出现,请问可能是哪里问题?
换成writefile就没有问题,请问为什么?
dirPath: wx.env.USER_DATA_PATH,
success: res => {
console.info(res)
res.files.forEach(val => {
fs.unlink({
filePath: `${wx.env.USER_DATA_PATH}/${val}`,
success: res => {
console.info(res)
},
fail: res => {
console.info(res)
}
})
})
},
fail: res => {
console.info(res)
}
})
只有用readdir才能读出文件列表,其他函数都没用,也没有读出剩余空间的函数,靠猜吗?希望其他人不要在这个问题浪费时间了,太坑了。