Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
ff54b2f6
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看板
未验证
提交
ff54b2f6
编写于
6月 02, 2022
作者:
O
openharmony_ci
提交者:
Gitee
6月 02, 2022
浏览文件
操作
浏览文件
下载
差异文件
!4860 add storage_service interfaces
Merge pull request !4860 from jaychao/cherry-pick-1654053823
上级
ef60ea17
7d5b475d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
324 addition
and
5 deletion
+324
-5
zh-cn/application-dev/reference/apis/js-apis-storage-statistics.md
...lication-dev/reference/apis/js-apis-storage-statistics.md
+324
-5
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-storage-statistics.md
浏览文件 @
ff54b2f6
...
...
@@ -4,7 +4,6 @@
>
> - 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
> - API 9当前为Canary版本,仅供试用,不保证接口可稳定调用。
> - 本模块接口为系统接口,三方应用不支持调用。
该模块提供空间查询相关的常用功能:包括对内外卡的空间查询,对应用分类数据统计的查询,对应用数据的查询等。
...
...
@@ -20,8 +19,12 @@ getTotalSizeOfVolume(volumeUuid: string): Promise<number>
异步获取指定卷的总空间大小,以promise方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -51,8 +54,12 @@ getTotalSizeOfVolume(volumeUuid: string, callback:AsyncCallback<number>):v
异步获取指定卷的总空间大小,以callback方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -78,8 +85,12 @@ getFreeSizeOfVolume(volumeUuid: string): Promise<number>
异步获取指定卷的可用空间大小,以promise方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -110,8 +121,12 @@ getFreeSizeOfVolume(volumeUuid: string, callback:AsyncCallback<number>):vo
异步获取指定卷的可用空间大小,以callback方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -135,8 +150,12 @@ getBundleStats(packageName: string): Promise<BundleStats>
异步获取应用存储数据,以promise方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -166,8 +185,12 @@ getBundleStats(packageName: string, callback: AsyncCallback<BundleStats>)
异步获取应用存储数据,以callback方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -185,14 +208,310 @@ getBundleStats(packageName: string, callback: AsyncCallback<BundleStats>)
});
```
## storagestatistics.getCurrentBundleStats<sup>9+</sup>
getCurrentBundleStats(): Promise
<BundleStats>
第三方应用异步获取占用空间,以promise方式返回。
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
-
返回值
| 类型 | 说明 |
| ------------------------------------------ | -------------------------- |
| Promise
<
[Bundlestats](#bundlestats)
>
| 返回指定卷上的应用存储状态 |
-
示例
```
js
let
bundleStats
=
await
storageStatistics
.
getCurrentBundleStats
();
console
.
info
(
"
getCurrentBundleStats successfully:
"
+
JSON
.
stringify
(
bundleStats
));
```
## storagestatistics.getCurrentBundleStats<sup>9+</sup>
getCurrentBundleStats(callback: AsyncCallback
<BundleStats>
): void
第三方应用异步获取占用空间,以callback方式返回。
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
-
参数
| 参数名 | 类型 | 必填 | 说明 |
| -------- | --------------------------------------------------------- | ---- | ------------------------------------ |
| callback | callback:AsyncCallback
<
[BundleStats](#bundlestats)
>
| 是 | 获取指定卷上的应用存储状态之后的回调 |
-
示例
```
js
storagestatistics
.
getCurrentBundleStats
(
function
(
error
,
bundleStats
){
// do something
console
.
info
(
"
getCurrentBundleStats successfully:
"
+
JSON
.
stringify
(
bundleStats
));
});
```
## BundleStats<sup>9+</sup>
**系统能力**
:以下各项对应的系统能力均为SystemCapability.FileManagement.StorageService.SpatialStatistics。
### 属性
-
属性
| 名称 | 类型 | 说明 |
| --------- | ------ | -------------- |
| appSize | number | app数据大小 |
| cacheSize | number | 缓存数据大小 |
| dataSize | number | 应用总数据大小 |
## storagestatistics.getTotalSize<sup>9+</sup>
getTotalSize(): Promise
<number>
获取内卡的总空间大小,以promise方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
返回值
| 类型 | 说明 |
| --------------------- | ------------------ |
| Promise
<
number
>
| 返回内卡的总空间大小 |
-
示例
```
js
let
number
=
await
storageStatistics
.
getTotalSize
();
console
.
info
(
"
getTotalSize successfully:
"
+
JSON
.
stringify
(
number
));
```
## storagestatistics.getTotalSize<sup>9+</sup>
getTotalSize(callback: AsyncCallback
<number>
): void
获取内卡的总空间大小,以callback方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------ | ---- | ------------------------ |
| callback | callback:AsyncCallback
<
number
>
| 是 | 获取内卡的总空间大小之后的回调 |
-
示例
```
js
storagestatistics
.
getTotalSize
(
function
(
error
,
number
){
// do something
console
.
info
(
"
getTotalSize successfully:
"
+
JSON
.
stringify
(
number
));
});
```
## storagestatistics.getFreeSize<sup>9+</sup>
getFreeSize(): Promise
<number>
获取内卡的可用空间大小,以promise方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
返回值
| 类型 | 说明 |
| --------------------- | ------------------ |
| Promise
<
number
>
| 返回内卡的可用空间大小 |
-
示例
```
js
let
number
=
await
storageStatistics
.
getFreeSize
();
console
.
info
(
"
getFreeSize successfully:
"
+
JSON
.
stringify
(
number
));
```
## storagestatistics.getFreeSize<sup>9+</sup>
getFreeSize(callback: AsyncCallback
<number>
): void
获取内卡的可用空间大小,以callback方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------ | ---- | ------------------------- |
| callback | callback:AsyncCallback
<
number
>
| 是 | 获取内卡的可用空间大小之后的回调 |
-
示例
```
js
storagestatistics
.
getFreeSize
(
function
(
error
,
number
){
// do something
console
.
info
(
"
getFreeSize successfully:
"
+
JSON
.
stringify
(
number
));
});
```
## storagestatistics.getSystemSize<sup>9+</sup>
getSystemSize(): Promise
<
number
>
异步获取系统空间大小,以promise方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
返回值
| 类型 | 说明 |
| --------------------- | ---------------- |
| Promise
<
number
>
| 返回系统空间大小 |
-
示例
```
js
storagestatistics
.
getSystemSize
().
then
(
function
(
number
){
console
.
info
(
"
getSystemSize successfully:
"
+
number
);
}).
catch
(
function
(
err
){
console
.
info
(
"
getSystemSize failed with error:
"
+
err
);
});
```
## storagestatistics.getSystemSize<sup>9+</sup>
getSystemSize(callback:AsyncCallback
<
number
>
):void
异步获取系统空间大小,以callback方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------------------------------------ | ---- | -------------------------- |
| callback | callback:AsyncCallback
<
number
>
| 是 | 获取系统空间大小之后的回调 |
-
示例
```
js
storagestatistics
.
getSystemSize
(
function
(
error
,
number
){
// do something
console
.
info
(
"
getSystemSize successfully:
"
+
number
);
});
```
## storagestatistics.getUserStorageStats<sup>9+</sup>
getUserStorageStats(userId?: string): Promise
<
StorageStats
>
异步获取用户各类别数据大小,以promise方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------ | ---- | ---- |
| userId | string | 否 | 用户id
<br/>
确认当前用户:
<br/>
-
有值:表示指定用户。
<br/>
-
无值:表示当前用户。|
-
返回值
| 类型 | 说明 |
| --------------------- | ---------------- |
| Promise
<
[StorageStats](#StorageStats)
>
| 返回各类别数据大小 |
-
示例
```
js
let
userId
=
""
;
storagestatistics
.
getUserStorageStats
(
userId
).
then
(
function
(
StorageStats
){
console
.
info
(
"
getUserStorageStats successfully:
"
+
JSON
.
stringify
(
StorageStats
));
}).
catch
(
function
(
err
){
console
.
info
(
"
getUserStorageStats failed with error:
"
+
err
);
});
```
## storagestatistics.getUserStorageStats<sup>9+</sup>
getUserStorageStats(userId?: string, callback:AsyncCallback
<
StorageStats
>
):void
异步获取用户各类别数据大小,以callback方式返回。
**需要权限**
:ohos.permission.STORAGE_MANAGER
**系统能力**
:SystemCapability.FileManagement.StorageService.SpatialStatistics
**系统API**
:该接口为系统接口,三方应用不支持调用
-
参数
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------------------------------------ | ---- | -------------------------- |
| userId | string | 否 | 用户id
<br/>
确认当前用户:
<br/>
-
有值:表示指定用户。
<br/>
-
无值:表示当前用户。 |
| callback | callback:AsyncCallback
<
[StorageStats](#StorageStats)
>
| 是 | 返回各类别数据大小之后的回调 |
-
示例
```
js
storagestatistics
.
getUserStorageStats
(
userId
,
function
(
error
,
StorageStats
){
// do something
console
.
info
(
"
getUserStorageStats successfully:
"
+
JSON
.
stringify
(
StorageStats
));
});
```
## StorageStats<sup>9+</sup>
**系统能力**
:以下各项对应的系统能力均为SystemCapability.FileManagement.StorageService.SpatialStatistics。
-
属性
| 名称 | 类型 | 说明 |
| --------- | ------ | -------------- |
| appSize
<sup>
9+
</sup>
| number | app数据大小 |
| cacheSize
<sup>
9+
</sup>
| number | 缓存数据大小 |
| dataSize
<sup>
9+
</sup>
| number | 应用总数据大小 |
\ No newline at end of file
| total | number | 内卡总空间大小 |
| audio | number | 音频数据大小 |
| video | number | 视频数据大小 |
| image | number | 图像数据大小 |
| file | number | 文件数据大小 |
| app | number | 应用数据大小 |
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录