FileSystemManager.mkdir
收藏
我的收藏

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

用户目录 下创建目录

前提条件
业务背景
使用限制
注意事项

dirPath 必须以 ttfile://user 开头。

支持沙盒
相关教程

语法

FileSystemManager.mkdir(options)

参数说明

options 为 object 类型,属性如下:

属性名类型默认值必填说明最低支持版本
recursivebooleanfalse
是否递归创建该目录的上级目录后再创建该目录
1.81.0
dirPathstring
创建的目录路径, 必须以 `ttfile://user` 开头
1.15.0
successfunction
接口调用成功的回调函数
1.15.0
failfunction
接口调用失败的回调函数
1.15.0
completefunction
接口调用结束的回调函数(调用成功、失败都会执行)
1.15.0

回调成功

object 类型,属性如下:

属性名类型说明最低支持版本
errMsgstring

"mkdir:ok"

1.15.0

回调失败

object 类型,属性如下:

属性名类型说明最低支持版本
errMsgstring

"mkdir:fail " + 详细错误信息

1.15.0

错误码

errorCodeerrMsgerrorType说明最低支持版本
102699dirPath is invalidD
dirPath是必传值

请查看dirPath参数是否正确

1.15.0
107101permission denied, %s %sD
没有权限

请查看dirPath参数是否正确

1.15.0
107102file already exists, %s %sD
文件已经存在

请查看dirPath参数是否正确

1.15.0
107103no such file or directory, %s %sD
文件夹创建失败

请查看dirPath参数是否正确

1.15.0
107191sandbox is nilF
小程序框架内部错误,有需要请创建工单咨询
1.15.0
161799params dirPath is requiredD
dirPath是必传值

请查看dirPath参数是否正确

1.15.0
161799inputs[0] should be string, but got xxxD
参数类型不对
1.15.0

扫码体验

请使用字节宿主APP扫码

代码示例

开发者工具中预览

const fileSystemManager = tt.getFileSystemManager() fileSystemManager.mkdir({ dirPath: "ttfile://user/example-dir", recursive: true, success(_res) { console.log("ttfile://user/example-dir 创建成功") }, fail(res) { console.log("ttfile://user/example-dir 创建失败", res.errMsg) }, })