FileSystemManager.mkdirSync收藏我的收藏
收藏
我的收藏基础库 1.15.0 开始支持本方法,这是一个同步方法。
在 用户目录 下创建目录。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 |
|
支持沙盒 | 否 |
相关教程 | 无 |
语法
FileSystemManager.mkdirSync(dirPath, recursive)
参数说明
dirPath
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
string | 是 | 创建的目录路径, 必须 ttfile://user 开头 | 1.15.0 |
recursive
类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|
boolean | 否 | 是否递归创建该目录的上级目录后再创建该目录。 | 1.81.0 |
返回值
无
错误码
errorCode | errMsg | errorType | 说明 | 最低支持版本 |
---|---|---|---|---|
108501 | permission denied, %s %s | D | 没有权限 请查看dirPath参数是否正确 | 1.15.0 |
108502 | file already exists, %s %s | D | 文件已经存在 请查看dirPath参数是否正确 | 1.15.0 |
108503 | no such file or directory, %s %s | D | 文件夹创建失败 请查看dirPath参数是否正确 | 1.15.0 |
161799 | inputs[0] should be string, but got xxx | D | 参数类型不对 | 1.15.0 |
扫码体验
请使用字节宿主APP扫码
代码示例
const fileSystemManager = tt.getFileSystemManager() try { fileSystemManager.mkdirSync("ttfile://user/some/path", true) console.log("调用成功") } catch (err) { console.log("调用失败", err) }
点击纠错