收藏
回答

wx.downloadFile 指定filepath,多次下载filepath的文件会覆盖吗?

const mypath = `${wx.env.USER_DATA_PATH}/test.pdf`  
wx.downloadFile({
          url'http://yourdomain/test.pdf',
          filePath: mypath,
          successfunction (res{
            console.log(res);
            const filePath = mypath
            wx.openDocument({
              showMenutrue,
              filePath: filePath,
              successfunction (res{
                console.log('打开文档成功')
              },
              fail(res) => {
                console.log(res);
              }
            })
          },

问题1:用户多次触发下载文件,mypath 这个位置的文件会直接覆盖掉吗?出现相同文件名的文件是覆盖旧文件,还是会保留旧文件存一个副本文件

问题2:指定了filePath,这个存储的文件的生命周期是多久,什么时候会删除?


回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容