Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
0b672577
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0b672577
编写于
8月 22, 2023
作者:
H
huangjie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
资源增加rawfile相关同步接口文档
Signed-off-by:
N
huangjie
<
huangjie125@huawei.com
>
上级
3bb87d10
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
142 addition
and
0 deletion
+142
-0
zh-cn/application-dev/reference/apis/js-apis-resource-manager.md
...pplication-dev/reference/apis/js-apis-resource-manager.md
+142
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-resource-manager.md
浏览文件 @
0b672577
...
...
@@ -3540,6 +3540,43 @@ getColorByName(resName: string): Promise<number>
}
```
### getRawFileContentSync<sup>10+</sup>
getRawFileContentSync(path: string): Uint8Array
用户获取resources/rawfile目录下对应的rawfile文件内容,使用同步形式返回字节数组。
**系统能力:** SystemCapability.Global.ResourceManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------- | ---- | ----------------------- |
| path | string | 是 | rawfile文件路径 |
**返回值:**
| 类型 | 说明 |
| --------------------- | ---------- |
| Uint8Array | 返回获取的rawfile文件内容 |
**错误码:**
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005 | If the resource not found by path. |
**示例:**
```
ts
try {
this.context.resourceManager.getRawFileContentSync("test.txt");
} catch (error) {
console.error(
`getRawFileContentSync failed, error code: ${error.code}, message: ${error.message}.`
);
}
```
### getRawFileContent<sup>9+</sup>
getRawFileContent(path: string, callback: AsyncCallback<Uint8Array>): void
...
...
@@ -3619,6 +3656,43 @@ getRawFileContent(path: string): Promise<Uint8Array>
}
```
### getRawFileListSync<sup>10+</sup>
getRawFileListSync(path: string): Array\<string\>
用户获取resources/rawfile目录下文件夹及文件列表,使用同步形式返回文件列表的字符串数组。
**系统能力:** SystemCapability.Global.ResourceManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------- | ---- | ----------------------- |
| path | string | 是 | rawfile文件夹路径 |
**返回值:**
| 类型 | 说明 |
| ------------------------- | ----------- |
| Array\<string\> | rawfile文件夹下的列表(包含子文件夹和文件) |
**错误码:**
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005 | If the resource not found by path. |
**示例:**
```
ts
try { // 传入""表示获取rawfile根目录下的文件列表
this.context.resourceManager.getRawFileListSync("")
} catch (error) {
console.error(
`getRawFileListSync failed, error code: ${error.code}, message: ${error.message}.`
);
}
```
### getRawFileList<sup>10+</sup>
getRawFileList(path: string, callback: AsyncCallback<Array\<string\>>): void;
...
...
@@ -3698,6 +3772,43 @@ getRawFileList(path: string): Promise<Array\<string\>>
}
```
### getRawFdSync<sup>10+</sup>
getRawFdSync(path: string): RawFileDescriptor
用户获取resources/rawfile目录下对应rawfile文件的descriptor。
**系统能力:** SystemCapability.Global.ResourceManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------- | ---- | -------------------------------- |
| path | string | 是 | rawfile文件路径 |
**返回值:**
| 类型 | 说明 |
| ------------------------- | ----------- |
| [RawFileDescriptor](#rawfiledescriptor8) | rawfile文件的descriptor |
**错误码:**
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005 | If the resource not found by path. |
**示例:**
```
ts
try {
this.context.resourceManager.getRawFdSync("test.txt");
} catch (error) {
console.error(
`getRawFdSync failed, error code: ${error.code}, message: ${error.message}.`
);
}
```
### getRawFd<sup>9+</sup>
getRawFd(path: string, callback: AsyncCallback<RawFileDescriptor>): void
...
...
@@ -3781,6 +3892,37 @@ getRawFd(path: string): Promise<RawFileDescriptor>
}
```
### closeRawFdSync<sup>10+</sup>
closeRawFdSync(path: string): void
用户关闭resources/rawfile目录下rawfile文件的descriptor。
**系统能力**:SystemCapability.Global.ResourceManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------- | ---- | ----------- |
| path | string | 是 | rawfile文件路径 |
**错误码:**
以下错误码的详细介绍请参见[资源管理错误码](../errorcodes/errorcode-resource-manager.md)。
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 9001005 | The resource not found by path. |
**示例:**
```
ts
try {
this.context.resourceManager.closeRawFdSync("test.txt");
} catch (error) {
console.error(
`closeRawFd failed, error code: ${error.code}, message: ${error.message}.`
);
}
```
### closeRawFd<sup>9+</sup>
closeRawFd(path: string, callback: AsyncCallback<void>): void
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录