const mypath = `${wx.env.USER_DATA_PATH}/test.pdf`
wx.downloadFile({
url: 'http://yourdomain/test.pdf',
filePath: mypath,
success: function (res) {
console.log(res);
const filePath = mypath
wx.openDocument({
showMenu: true,
filePath: filePath,
success: function (res) {
console.log('打开文档成功')
},
fail: (res) => {
console.log(res);
}
})
},
问题1:用户多次触发下载文件,mypath 这个位置的文件会直接覆盖掉吗?出现相同文件名的文件是覆盖旧文件,还是会保留旧文件存一个副本文件
问题2:指定了filePath,这个存储的文件的生命周期是多久,什么时候会删除?
1.会
2.本地用户目录,只要用户不删除小程序,就永久存在