Taro.removeSavedFile(option)
Deletes local cache files.
Type
(option: Option) => Promise<CallbackResult>
Parameters
Option
Property | Type | Required | Description |
---|---|---|---|
filePath | string | Yes | Path to the file to be deleted |
complete | (res: any) => void | No | The callback function used when the API call completed (always executed whether the call succeeds or fails) |
fail | (res: any) => void | No | The callback function for a failed API call |
success | (res: Result) => void | No | The callback function for a successful API call |
RemoveSavedFileFailCallbackResult
Property | Type | Description |
---|---|---|
errMsg | string | Error message valid value: - 'fail file not exist'; |
Sample Code
Taro.getSavedFileList({
success: function (res) {
if (res.fileList.length > 0){
Taro.removeSavedFile({
filePath: res.fileList[0].filePath,
complete: function (res) {
console.log(res)
}
})
}
}
})
API Support
API | WeChat Mini-Program | H5 | React Native |
---|---|---|---|
Taro.removeSavedFile | ✔️ | ✔️ |