Skip to main content
Version: Next

Taro.removeSavedFile(option)

Deletes local cache files.

Reference

Type​

(option: Option) => Promise<CallbackResult>

Parameters​

Option​

PropertyTypeRequiredDescription
filePathstringYesPath to the file to be deleted
complete(res: any) => voidNoThe callback function used when the API call completed (always executed whether the call succeeds or fails)
fail(res: any) => voidNoThe callback function for a failed API call
success(res: Result) => voidNoThe callback function for a successful API call

RemoveSavedFileFailCallbackResult​

PropertyTypeDescription
errMsgstringError 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​

APIWeChat Mini-ProgramH5React Native
Taro.removeSavedFile✔️✔️