抖音开放平台Logo
开发者文档
控制台

FileSystemManager.accessSync
收藏
我的收藏

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

判断文件/目录是否存在。

前提条件
业务背景
使用限制
注意事项
accessSync 可以用于 用户目录(ttfile://user) 临时目录(ttfile://temp) 以及 包内目录(访问包内目录不需要加额外协议头)
相关教程

语法

FileSystemManager.accessSync(path)

参数说明

path

类型默认值必填说明最低支持版本
string

待检测的文件或者目录地址

  • 用户目录以 ttfile://user 开头
  • 临时目录以 ttfile://temp 开头
  • 检测包内目录不需要前缀, 例如 fileSystemManager.accessSync("game.js")
1.15.0

返回值

错误码

errorCodeerrMsgerrorType说明最低支持版本
999991error stackF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0
110801permission denied, $apiName $filePathD
1.15.0
110802no such file or directory, $filePathD
1.15.0
999999invalid paramD
参数错误
1.15.0
999999params $paramName is requiredD
1.15.0
999999params $paramName type is not $paramType typeD
1.15.0
999999$paramName is invalidD
1.15.0
110802no such file or directory, $apiName $filePathD
1.15.0
999993internal errorF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0

代码示例

【代码示例1】判断临时目录路径是否存在

const fileSystemManager = tt.getFileSystemManager(); const path = `ttfile://temp/some-path`; // 判断的地址 try { fileSystemManager.accessSync(path); console.log(`${path} 地址存在`); } catch (err) { console.log(`${path} 地址不存在或其他错误`, res.errMsg); }

【代码示例2】判断用户目录下路径是否存在

const fileSystemManager = tt.getFileSystemManager(); const path = `ttfile://user/some-path`; // 判断的地址 try { fileSystemManager.accessSync(path); console.log(`${path} 地址存在`); } catch (err) { console.log(`${path} 地址不存在或其他错误`, res.errMsg); }

【代码示例3】判断包内路径是否存在

const fileSystemManager = tt.getFileSystemManager(); // 包内路径不需要 `ttfile://` 协议 const path = "app.js"; // 判断的地址 try { fileSystemManager.accessSync(path); console.log(`${path} 地址存在`); } catch (err) { console.log(`${path} 地址不存在或其他错误`, res.errMsg); }