FileSystemManager.readdir收藏我的收藏
收藏
我的收藏基础库 1.15.0 开始支持本方法,这是一个异步方法。
读取目录内文件列表。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 无 |
注意事项 | 无 |
相关教程 | 无 |
语法
FileSystemManager.readdir(options)
参数说明
options 为 object 类型,属性如下:
属性名 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|---|
dirPath | string | 是 | 要读取的目录路径 | 1.15.0 | |
success | function | 否 | 接口调用成功的回调函数 | 1.15.0 | |
fail | function | 否 | 接口调用失败的回调函数 | 1.15.0 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | 1.15.0 |
回调成功
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
files | array | 指定目录下的文件名数组 | 1.15.0 |
errMsg | string | "FileSystemManager.readdir:ok" | 1.15.0 |
回调失败
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "FileSystemManager.readdir:fail" + 详细错误信息 | 1.15.0 |
错误码
errNo | errMsg | 说明 | 最低支持版本 |
---|---|---|---|
20000 | readdir:fail dirPath is invalid | dirPath 参数错误 | 1.99.0 |
20001 | readdir:fail param should be xxx, but got xxx | 参数校验错误 | 1.99.0 |
21101 | readdir:fail permission denied, readdir {dirPath_value} | 是否有操作权限(dirPath 路径不可读) | 1.99.0 |
21102 | readdir:fail operation not permitted, readdir {dirPath_value} | 类型不正确(dirPath 路径不是目录) | 1.99.0 |
21103 | readdir:fail no such file or directory, readdir {dirPath_value} | 目录不存在 | 1.99.0 |
代码示例
const fileSystemManager = tt.getFileSystemManager(); const files = fileSystemManager.readdir({ dirPath: "ttfile://user/", success(res) { console.log("调用成功", res.files); }, fail(res) { console.log("调用失败", res.errMsg); }, });
点击纠错