未验证 提交 7d287749 编写于 作者: O openharmony_ci 提交者: Gitee

!16880 【3.2】修复fileuri的大小写问题并补充fileio部分接口默认值

Merge pull request !16880 from 张凯祥/cherry-pick-1680747177
......@@ -232,7 +232,7 @@
- [@ohos.file.environment (目录环境能力)](js-apis-file-environment.md)
- [@ohos.file.fileAccess (公共文件访问与管理)](js-apis-fileAccess.md)
- [@ohos.file.fileExtensionInfo (公共文件访问与管理属性信息)](js-apis-fileExtensionInfo.md)
- [@ohos.file.fileUri (文件URI)](js-apis-file-fileUri.md)
- [@ohos.file.fileuri (文件URI)](js-apis-file-fileuri.md)
- [@ohos.file.fs (文件管理)](js-apis-file-fs.md)
- [@ohos.file.hash (文件哈希处理)](js-apis-file-hash.md)
- [@ohos.file.picker (选择器)](js-apis-file-picker.md)
......
# @ohos.file.fileUri (文件URI)
# @ohos.file.fileuri (文件URI)
该模块提供通过PATH获取文件统一资源标志符(Uniform Resource Identifier,URI),后续可通过使用[@ohos.file.fs](js-apis-file-fs.md)进行相关open、read、write等操作,实现文件分享。
......@@ -8,7 +8,7 @@
## 导入模块
```js
import fileUri from "@ohos.file.fileUri";
import fileuri from "@ohos.file.fileuri";
```
使用该功能模块前,需要先获取其应用沙箱路径,开发示例如下:
......@@ -56,5 +56,5 @@ getUriFromPath(path: string): string
```js
let filePath = pathDir + "test.txt";
let uri = fileUri.getUriFromPath(filePath);
let uri = fileuri.getUriFromPath(filePath);
```
......@@ -955,7 +955,7 @@ truncate(file: string|number, len?: number): Promise<void>
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | -------------------------------- |
| file | string\|number | 是 | 文件的应用沙箱路径或已打开的文件描述符fd。 |
| len | number | 否 | 文件截断后的长度,以字节为单位。 |
| len | number | 否 | 文件截断后的长度,以字节为单位。默认为0。 |
**返回值:**
......@@ -989,7 +989,7 @@ truncate(file: string|number, len?: number, callback: AsyncCallback<void>)
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------- | ---- | -------------------------------- |
| file | string\|number | 是 | 文件的应用沙箱路径或已打开的文件描述符fd。 |
| len | number | 否 | 文件截断后的长度,以字节为单位。 |
| len | number | 否 | 文件截断后的长度,以字节为单位。默认为0。 |
| callback | AsyncCallback<void> | 是 | 回调函数,本调用无返回值。 |
**示例:**
......@@ -1020,7 +1020,7 @@ truncateSync(file: string|number, len?: number): void
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | -------------------------------- |
| file | string\|number | 是 | 文件的应用沙箱路径或已打开的文件描述符fd。 |
| len | number | 否 | 文件截断后的长度,以字节为单位。 |
| len | number | 否 | 文件截断后的长度,以字节为单位。默认为0。 |
**示例:**
......@@ -1575,7 +1575,7 @@ listFile(path: string, options?: {
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | --------------------------- |
| path | string | 是 | 文件夹的应用沙箱路径。 |
| options | Object | 否 | 文件过滤选项。 |
| options | Object | 否 | 文件过滤选项。默认不进行过滤。 |
**options参数说明:**
......@@ -1628,7 +1628,7 @@ listFile(path: string, options?: {
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | --------------------------- |
| path | string | 是 | 文件夹的应用沙箱路径。 |
| options | Object | 否 | 文件过滤选项。 |
| options | Object | 否 | 文件过滤选项。默认不进行过滤。 |
| callback | AsyncCallback<string[]> | 是 | 异步列出文件名数组之后的回调。 |
**options参数说明:**
......@@ -1679,7 +1679,7 @@ listFileSync(path: string, options?: {
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | --------------------------- |
| path | string | 是 | 文件夹的应用沙箱路径。 |
| options | Object | 否 | 文件过滤选项。 |
| options | Object | 否 | 文件过滤选项。默认不进行过滤。 |
**options参数说明:**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册