FileSystemManager.unlinkSync
收藏
我的收藏

基础库 1.15.0 开始支持本方法,这是一个同步方法。

删除文件,只能删除 用户目录(ttfile://user)下的文件。

前提条件
业务背景
使用限制
filePath 必须以 ttfile://user 开头。
注意事项
支持沙盒
相关教程

语法

FileSystemManager.unlinkSync(filePath)

参数说明

filePath

类型默认值必填说明最低支持版本
string
要删除的文件路径, 必须以 ttfile://user 开头
1.15.0

返回值

错误码

errorCodeerrMsgerrorType说明最低支持版本
108901permission denied, %s %sD
路径没有权限

请查看filePath参数是否正确

1.15.0
108902no such file or directory, %s %sD
目标路径目录不存在

请查看filePath参数是否正确

1.15.0
108903operation not permitted, %s %sD
路径对应的不是一个文件

请查看filePath参数是否正确

1.15.0
108999params filePath is requiredD
filePath是必传值

请查看filePath参数是否正确

1.15.0
161799inputs[0] should be string, but got %sD
参数类型不对

请查看filePath参数是否正确

1.15.0

扫码体验

请使用字节宿主APP扫码

代码示例

开发者工具中预览

const fileSystemManager = tt.getFileSystemManager() tt.chooseImage({ success(res) { // 保存临时文件到 用户目录 const savedFilePath = fileSystemManager.saveFileSync(res.tempFilePaths[0]) try { // 删除文件 fileSystemManager.unlinkSync(savedFilePath) console.log("删除成功") } catch (err) { console.log("删除失败", err) } }, })