FileSystemManager.mkdir收藏我的收藏
收藏
我的收藏基础库 1.15.0 开始支持本方法,这是一个异步方法。
在 用户目录 下创建目录。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | dirPath 必须以 ttfile://user 开头 |
相关教程 | 无 |
语法
FileSystemManager.mkdir(options)
参数说明
options 为 object 类型,属性如下:
属性名 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|---|
dirPath | 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.mkdir:ok" | 1.15.0 |
回调失败
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "FileSystemManager.mkdir:fail" + 详细错误信息 | 1.15.0 |
错误码
errorCode | errMsg | errorType | 说明 | 最低支持版本 |
---|---|---|---|---|
999991 | error stack | F | 小游戏框架内部错误,有需要请创建工单咨询 | 1.15.0 |
112201 | permission denied, $apiName $filePath | D | 1.15.0 | |
112205 | file already exists, $apiName $filePath | D | 1.15.0 | |
112206 | no such file or directory, $apiName $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 | |
999991 | no such file or directory, $apiName $filePath | F | 小游戏框架内部错误,有需要请创建工单咨询 | 1.15.0 |
999993 | internal error | F | 小游戏框架内部错误,有需要请创建工单咨询 | 1.15.0 |
代码示例
const fileSystemManager = tt.getFileSystemManager(); fileSystemManager.mkdir({ dirPath: "ttfile://user/example-dir", success(_res) { console.log("ttfile://user/example-dir 创建成功"); }, fail(res) { console.log("ttfile://user/example-dir 创建失败", res.errMsg); }, });
点击纠错