writeFileSync
wx.getSavedFileList({
success:function(res){
if(res.fileList.length==0){
let fs = wx.getFileSystemManager();
fs.writeFileSync(`${wx.env.USER_DATA_PATH}/hello.txt`, ‘hello, world’, ‘utf8’)
}
}
})
为什么没有创建文件
2 回复
https://developers.weixin.qq.com/miniprogram/dev/framework/ability/file-system.html 文件是有几种类型的,getSavedFileList 操作的是本地缓存文件,writeFileSync 操作的是本地用户文件,两者间不存在关系。