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

FileSystemManager.mkdirSync
收藏
我的收藏

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

用户目录 下创建目录。

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

语法

FileSystemManager.mkdirSync(dirPath)

参数说明

dirPath

类型默认值必填说明最低支持版本
string
创建的目录路径, 必须 ttfile://user 开头
1.15.0

返回值

错误码

errorCodeerrMsgerrorType说明最低支持版本
999991error stackF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0
112301permission denied, $apiName $filePathD
1.15.0
112305file already exists, $apiName $filePathD
1.15.0
112306no such file or directory, $apiName $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
999991no such file or directory, $apiName $filePathF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0
999991no such file or directory, $apiName $filePathF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0
999993internal errorF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0

代码示例

const fileSystemManager = tt.getFileSystemManager(); try { fileSystemManager.mkdirSync("ttfile://user/some/path"); console.log("调用成功"); } catch (err) { console.log("调用失败", err); }