FileSystemManager.accessSync收藏我的收藏
收藏
我的收藏基础库 1.15.0 开始支持本方法,这是一个同步方法。
判断文件/目录是否存在。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | accessSync 可以用于 用户目录(ttfile://user) 临时目录(ttfile://temp) 以及 包内目录(访问包内目录不需要加额外协议头) |
相关教程 | 无 |
语法
FileSystemManager.accessSync(path)
参数说明
path
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
string | 是 | 待检测的文件或者目录地址
| 1.15.0 |
返回值
无
错误码
errorCode | errMsg | errorType | 说明 | 最低支持版本 |
---|---|---|---|---|
999991 | error stack | F | 小游戏框架内部错误,有需要请创建工单咨询 | 1.15.0 |
110801 | permission denied, $apiName $filePath | D | 1.15.0 | |
110802 | no such file or directory, $filePath | D | 1.15.0 | |
999999 | invalid param | D | 参数错误 | 1.15.0 |
999999 | params $paramName is required | D | 1.15.0 | |
999999 | params $paramName type is not $paramType type | D | 1.15.0 | |
999999 | $paramName is invalid | D | 1.15.0 | |
110802 | no such file or directory, $apiName $filePath | D | 1.15.0 | |
999993 | internal error | F | 小游戏框架内部错误,有需要请创建工单咨询 | 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); }
点击纠错