uni.removeSavedFile(OBJECT)

删除本地存储的文件。

平台差异说明

5+AppH5微信小程序支付宝小程序百度小程序头条小程序
x

OBJECT 参数说明:

参数名类型必填说明
filePathString需要删除的文件路径
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

示例代码:

  1. uni.getSavedFileList({
  2. success: function (res) {
  3. if (res.fileList.length > 0) {
  4. uni.removeSavedFile({
  5. filePath: res.fileList[0].filePath,
  6. complete: function (res) {
  7. console.log(res);
  8. }
  9. });
  10. }
  11. }
  12. });