FileSystemManager.removeSavedFile收藏我的收藏
收藏
我的收藏基础库 1.15.0 开始支持本方法,这是一个异步方法。
删除该小程序下用户目录内的文件,用户目录以 ttfile://user 开头。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | 无 |
相关教程 | 无 |
语法
FileSystemManager.removeSavedFile(options)
参数说明
options 为 object 类型,属性如下:
属性名 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|---|
filePath | string | 是 | 要删除的文件路径,必须以 ttfile://user 开头 | 1.15.0 | |
success | function | 否 | 接口调用成功的回调函数 | 1.15.0 | |
fail | function | 否 | 接口调用失败的回调函数 | 1.15.0 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | 1.15.0 |
回调成功
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "FileSystemManager.removeSavedFile:ok" | 1.15.0 |
回调失败
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "FileSystemManager.removeSavedFile:fail" + 详细错误信息 | 1.15.0 |
错误码
errNo | errMsg | 说明 | 最低支持版本 |
---|---|---|---|
20000 | removeSavedFile:fail filePath is invalid | filePath 参数错误 | 1.99.0 |
20001 | removeSavedFile:fail param should be xxx, but got xxx | 参数校验错误 | 1.99.0 |
21101 | removeSavedFile:fail permission denied, removeSavedFile {filePath_value} | 是否有操作权限 | 1.99.0 |
21102 | removeSavedFile:fail no such file or directory, removeSavedFile {filePath_value} | 文件不存在 | 1.99.0 |
21104 | removeSavedFile:fail operation not permitted, removeSavedFile {filePath_value} | 路径类型不正确 | 1.99.0 |
代码示例
const fileSystemManager = tt.getFileSystemManager(); fileSystemManager.getSavedFileList({ success(res) { console.log("当前用户目录下的文件:", res.fileList); removeSavedFile(res.fileList); }, }); function removeSavedFile(fileList) { fileList.forEach((filePath) => { fileSystemManager.removeSavedFile({ filePath, success(res) { console.log(`${filePath} 删除成功`); }, fail(res) { console.error(`${filePath} 删除失败`, res.errMsg); }, }); }); }
点击纠错