wx.removeSavedFile用来删除本地文件

wx.removeSavedFile的参数说明

image.png
wx.removeSavedFile传入要删除的文件路径,就可以把这个文件从本地删除
下面这个示例就是通过wx.getSavedFileList获得在本地保存的所有文件路径
然后使用wx.removeSavedFile删除其中第一个文件的示例,代码如下

  1. wx.getSavedFileList({
  2. success: function(res){
  3. if(res.fileList.length > 2){
  4. let filePath = res.fileList.pop().filePath;
  5. wx.removeSavedFile({
  6. filePath: filePath,
  7. success: function () {
  8. console.log('删除本地最后一个文件')
  9. }
  10. })
  11. }
  12. }
  13. })