wx.removeSavedFile的参数说明
向wx.removeSavedFile
传入要删除的文件路径,就可以把这个文件从本地删除
下面这个示例就是通过wx.getSavedFileList
获得在本地保存的所有文件路径
然后使用wx.removeSavedFile
删除其中第一个文件的示例,代码如下
wx.getSavedFileList({
success: function(res){
if(res.fileList.length > 2){
let filePath = res.fileList.pop().filePath;
wx.removeSavedFile({
filePath: filePath,
success: function () {
console.log('删除本地最后一个文件')
}
})
}
}
})