提交 872341f7 编写于 作者: Z zhuhongtao666

fileio&document fix

Signed-off-by: Nzhuhongtao666 <zhuhongtao12@huawei.com>
上级 b253ef94
......@@ -12,7 +12,7 @@ import document from '@ohos.document';
## document.choose<sup>(deprecated)</sup>
choose(types? : string[]): Promise&lt;string&gt;
choose(types?: string[]): Promise&lt;string&gt;
通过文件管理器选择文件,异步返回文件URI,使用promise形式返回结果。
......@@ -46,7 +46,7 @@ choose(callback:AsyncCallback&lt;string&gt;): void
**参数:**
| 参数 | 类型 | 必填 | 说明 |
| 参数 | 类型 | 必填 | 说明 |
| -------- | --------------------------- | ---- | ---------------------------- |
| callback | AsyncCallback&lt;string&gt; | 是 | 异步获取对应文件URI(注:当前返回错误码) |
......@@ -70,7 +70,7 @@ choose(types:string[], callback:AsyncCallback&lt;string&gt;): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | --------------------------- | ---- | ---------------------------- |
| types | string[] | | 限定选择文件的类型 |
| types | string[] | | 限定选择文件的类型 |
| callback | AsyncCallback&lt;string&gt; | 是 | 异步获取对应文件URI(注:当前返回错误码) |
**示例:**
......@@ -93,7 +93,7 @@ show(uri:string, type:string):Promise&lt;void&gt;
**参数:**
| 参数 | 类型 | 必填 | 说明 |
| 参数 | 类型 | 必填 | 说明 |
| ---- | ------ | ---- | ---------------------------- |
| uri | string | 是 | 待打开的文件URI |
| type | string | 是 | 待打开文件的类型 |
......
......@@ -1276,7 +1276,7 @@ ftruncate(fd: number, len?: number): Promise&lt;void&gt;
## fileio.ftruncate<sup>7+</sup>
ftruncate(fd: number, len: number, callback: AsyncCallback&lt;void&gt;): void
ftruncate(fd: number, len?: number, callback: AsyncCallback&lt;void&gt;): void
基于文件描述符截断文件,使用callback异步回调。
......@@ -1363,7 +1363,7 @@ truncate(path: string, len?: number): Promise&lt;void&gt;
## fileio.truncate<sup>7+</sup>
truncate(path: string, len: number, callback: AsyncCallback&lt;void&gt;): void
truncate(path: string, len?: number, callback: AsyncCallback&lt;void&gt;): void
基于文件路径截断文件,使用callback异步回调。
......
......@@ -20,7 +20,7 @@ getFreeBytes(path:string):Promise&lt;number&gt;
**参数:**
| 参数 | 类型 | 必填 | 说明 |
| 参数 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ---------------------------- |
| path | string | 是 | 需要查询的文件系统的文件路径 |
......@@ -78,7 +78,7 @@ getTotalBytes(path: string): Promise&lt;number&gt;
**参数:**
| 参数 | 类型 | 必填 | 说明 |
| 参数 | 类型 | 必填 | 说明 |
| ---- | ------ | ---- | ---------------------------- |
| path | string | 是 | 需要查询的文件系统的文件路径 |
......
......@@ -453,7 +453,7 @@ getSystemSize(callback: AsyncCallback&lt;number&gt;): void
## storageStatistics.getUserStorageStats<sup>9+</sup>
getUserStorageStats(userId? : number): Promise&lt;StorageStats&gt;
getUserStorageStats(userId?: number): Promise&lt;StorageStats&gt;
异步获取用户各类别数据大小,以promise方式返回。
......@@ -490,7 +490,7 @@ getUserStorageStats(userId? : number): Promise&lt;StorageStats&gt;
## storageStatistics.getUserStorageStats<sup>9+</sup>
getUserStorageStats(userId: number, callback: AsyncCallback&lt;StorageStats&gt;): void
getUserStorageStats(userId?: number, callback: AsyncCallback&lt;StorageStats&gt;): void
异步获取用户各类别数据大小,以callback方式返回。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册