js-apis-userFileManager.md 80.1 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.filemanagement.userFileManager (用户数据管理)
Y
yangbo 已提交
2

Z
zhang-daiyue 已提交
3 4
该模块提供用户数据管理能力,包括访问、修改用户等用户公共媒体数据信息等常用功能。

zyjhandsome's avatar
zyjhandsome 已提交
5
> **说明:**
Z
zengyawen 已提交
6 7
> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
> 本模块接口为系统接口。
Y
yangbo 已提交
8 9

## 导入模块
W
wangqinxiao 已提交
10

Z
zhang-daiyue 已提交
11 12
```ts
import userFileManager from '@ohos.filemanagement.userFileManager';
Y
yangbo 已提交
13 14 15 16 17 18 19 20 21
```

## userFileManager.getUserFileMgr

getUserFileMgr(context: Context): UserFileManager

获取用户数据管理模块的实例,用于访问和修改用户等用户公共媒体数据信息(如音频、视频、图片、文档等)。

**模型约束:** 此接口仅可在Stage模型下使用。
zyjhandsome's avatar
zyjhandsome 已提交
22

Y
yangbo 已提交
23 24 25 26 27 28
**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:** 

| 参数名  | 类型    | 必填 | 说明                       |
| ------- | ------- | ---- | -------------------------- |
H
huweiqi 已提交
29
| context | [Context](js-apis-inner-app-context.md) | 是   | 传入Ability实例的Context |
Y
yangbo 已提交
30 31 32 33 34 35 36 37 38 39

**返回值:**

| 类型                            | 说明    |
| ----------------------------- | :---- |
| [UserFileManager](#userfilemanager) | 媒体库实例 |

**示例:**

```ts
40
//此处获取的userFileManager实例mgr为全局对象,后续使用到mgr的地方默认为使用此处获取的对象,如未添加此段代码报mgr未定义的错误请自行添加
Y
yangbo 已提交
41
const context = getContext(this);
H
huweiqi 已提交
42
let mgr = userFileManager.getUserFileMgr(context);
Y
yangbo 已提交
43
```
W
wangqinxiao 已提交
44

Y
yangbo 已提交
45 46
## UserFileManager

Z
zhang-daiyue 已提交
47 48 49 50 51 52
### getPhotoAssets

getPhotoAssets(options: FetchOptions, callback: AsyncCallback<FetchResult<FileAsset>>): void;


获取图片和视频资源,使用callback方式返回结果。
Y
yangbo 已提交
53 54 55 56 57



**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
58 59
**需要权限**:ohos.permission.READ_IMAGEVIDEO

Y
yangbo 已提交
60 61 62 63
**参数:**

| 参数名   | 类型                     | 必填 | 说明                      |
| -------- | ------------------------ | ---- | ------------------------- |
Z
zhang-daiyue 已提交
64 65
| options  | [FetchOptions](#fetchoptions)        | 是   | 图片和视频检索选项              |
| callback |  AsyncCallback<[FetchResult](#fetchresult)<[FileAsset](#fileasset)>> | 是   | callback 返回图片和视频检索结果集 |
Y
yangbo 已提交
66 67 68 69

**示例:**

```ts
H
huweiqi 已提交
70 71
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
async function example() {
  console.info('getPhotoAssets');
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOptions = {
    fetchColumns: [],
    predicates: predicates
  };

  mgr.getPhotoAssets(fetchOptions, async (err, fetchResult) => {
    if (fetchResult != undefined) {
      console.info('fetchResult success');
      let fileAsset = await fetchResult.getFirstObject();
      if (fileAsset != undefined) {
        console.info("fileAsset.displayName :" + fileAsset.displayName);
      }
    } else {
      console.info('fetchResult fail' + err);
    }
H
huweiqi 已提交
90
  });
Y
yangbo 已提交
91 92 93 94
}
```


Z
zhang-daiyue 已提交
95 96 97
### getPhotoAssets

getPhotoAssets(options: FetchOptions): Promise<FetchResult<FileAsset>>;
Y
yangbo 已提交
98

Z
zhang-daiyue 已提交
99
获取图片和视频资源,使用Promise方式返回结果。
Y
yangbo 已提交
100 101 102

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
103 104
**需要权限**:ohos.permission.READ_IMAGEVIDEO

Y
yangbo 已提交
105 106
**参数:**

Z
zhang-daiyue 已提交
107 108 109
| 参数名  | 类型                | 必填 | 说明             |
| ------- | ------------------- | ---- | ---------------- |
| options | [FetchOptions](#fetchoptions)   | 是   | 图片和视频检索选项     |
Y
yangbo 已提交
110

Z
zhang-daiyue 已提交
111
**返回值**
Y
yangbo 已提交
112

Z
zhang-daiyue 已提交
113 114 115
| 类型                        | 说明           |
| --------------------------- | -------------- |
| Promise<[FetchResult](#fetchresult)<[FileAsset](#fileasset)>> | 图片和视频数据结果集 |
Y
yangbo 已提交
116 117 118 119

**示例:**

```ts
H
huweiqi 已提交
120 121
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
122 123 124 125 126 127 128 129
async function example() {
  console.info('getPhotoAssets');
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOptions = {
    fetchColumns: [],
    predicates: predicates
  };
  try {
130
    let fetchResult = await mgr.getPhotoAssets(fetchOptions);
Z
zhang-daiyue 已提交
131 132 133 134 135 136
    if (fetchResult != undefined) {
      console.info('fetchResult success');
      let fileAsset = await fetchResult.getFirstObject();
      if (fileAsset != undefined) {
        console.info("fileAsset.displayName :" + fileAsset.displayName);
      }
Y
yangbo 已提交
137
    }
Z
zhang-daiyue 已提交
138 139 140
  } catch (err) {
    console.info('getPhotoAssets failed, message = ', err);
  }
Y
yangbo 已提交
141 142
}
```
Z
zhang-daiyue 已提交
143
### createPhotoAsset
Y
yangbo 已提交
144

Z
zhang-daiyue 已提交
145
createPhotoAsset(displayName: string, albumUri: string, callback: AsyncCallback<FileAsset>): void;
Y
yangbo 已提交
146

Z
zhang-daiyue 已提交
147
创建图片或视频资源,使用callback方式返回结果。
Y
yangbo 已提交
148 149 150

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
151
**需要权限**:ohos.permission.WRITE_IMAGEVIDEO
Y
yangbo 已提交
152 153 154 155 156

**参数:**

| 参数名   | 类型                     | 必填 | 说明                      |
| -------- | ------------------------ | ---- | ------------------------- |
Z
zhang-daiyue 已提交
157 158 159
| displayName  | string        | 是   | 创建的图片或者视频文件名              |
| albumUri  | string        | 是   | 创建的图片或者视频所在相册的uri              |
| callback |  AsyncCallback<[FileAsset](#fileasset)> | 是   | callback 返回创建的图片和视频结果 |
Y
yangbo 已提交
160 161 162 163

**示例:**

```ts
H
huweiqi 已提交
164 165
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
166
async function example() {
H
huweiqi 已提交
167
  console.info('createPhotoAssetDemo');
Z
zhang-daiyue 已提交
168 169 170 171
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOptions = {
    predicates: predicates
  };
H
huweiqi 已提交
172 173
  let albums = await mgr.getPhotoAlbums(fetchOptions);
  let album = await albums.getFirstObject();
H
huweiqi 已提交
174 175
  let testFileName = "testFile" + Date.now() + ".jpg";
  mgr.createPhotoAsset(testFileName, album.albumUri, (err, fileAsset) => {
Z
zhang-daiyue 已提交
176 177 178 179 180 181
    if (fileAsset != undefined) {
      console.info('createPhotoAsset file displayName' + fileAsset.displayName);
      console.info('createPhotoAsset successfully');
    } else {
      console.info('createPhotoAsset failed, message = ', err);
    }
H
huweiqi 已提交
182
  });
Z
zhang-daiyue 已提交
183 184
}
```
Y
yangbo 已提交
185

Z
zhang-daiyue 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
### createPhotoAsset

createPhotoAsset(displayName: string, callback: AsyncCallback<FileAsset>): void;

创建图片或视频资源,使用callback方式返回结果。

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**需要权限**:ohos.permission.WRITE_IMAGEVIDEO

**参数:**

| 参数名   | 类型                     | 必填 | 说明                      |
| -------- | ------------------------ | ---- | ------------------------- |
| displayName  | string        | 是   | 创建的图片或者视频文件名              |
| callback |  AsyncCallback<[FileAsset](#fileasset)> | 是   | callback 返回创建的图片和视频结果 |

**示例:**

```ts
async function example() {
H
huweiqi 已提交
207
  console.info('createPhotoAssetDemo');
H
huweiqi 已提交
208 209
  let testFileName = "testFile" + Date.now() + ".jpg";
  mgr.createPhotoAsset(testFileName, (err, fileAsset) => {
Z
zhang-daiyue 已提交
210 211 212 213 214 215
    if (fileAsset != undefined) {
      console.info('createPhotoAsset file displayName' + fileAsset.displayName);
      console.info('createPhotoAsset successfully');
    } else {
      console.info('createPhotoAsset failed, message = ', err);
    }
H
huweiqi 已提交
216
  });
Y
yangbo 已提交
217 218 219
}
```

Z
zhang-daiyue 已提交
220
### createPhotoAsset
Y
yangbo 已提交
221

H
huweiqi 已提交
222
createPhotoAsset(displayName: string, albumUri?: string): Promise<FileAsset>;
Y
yangbo 已提交
223

Z
zhang-daiyue 已提交
224
创建图片或视频资源,使用Promise方式返回结果。
Y
yangbo 已提交
225 226 227

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
228
**需要权限**:ohos.permission.WRITE_IMAGEVIDEO
Y
yangbo 已提交
229 230 231

**参数:**

Z
zhang-daiyue 已提交
232 233 234 235
| 参数名   | 类型                     | 必填 | 说明                      |
| -------- | ------------------------ | ---- | ------------------------- |
| displayName  | string        | 是   | 创建的图片或者视频文件名              |
| albumUri  | string        | 否   | 创建的图片或者视频所在相册的uri              |
Y
yangbo 已提交
236 237 238 239 240

**返回值**

| 类型                        | 说明           |
| --------------------------- | -------------- |
Z
zhang-daiyue 已提交
241
| Promise<[FileAsset](#fileasset)> | 返回创建的图片和视频结果 |
Y
yangbo 已提交
242 243 244 245

**示例:**

```ts
Z
zhang-daiyue 已提交
246
async function example() {
H
huweiqi 已提交
247
  console.info('createPhotoAssetDemo');
Z
zhang-daiyue 已提交
248
  try {
H
huweiqi 已提交
249
    let testFileName = "testFile" + Date.now() + ".jpg";
H
huweiqi 已提交
250
    let fileAsset = await mgr.createPhotoAsset(testFileName);
Z
zhang-daiyue 已提交
251 252 253 254 255
    console.info('createPhotoAsset file displayName' + fileAsset.displayName);
    console.info('createPhotoAsset successfully');
  } catch (err) {
    console.info('createPhotoAsset failed, message = ', err);
  }
Y
yangbo 已提交
256 257 258
}
```

Z
zhang-daiyue 已提交
259
### getPhotoAlbums
Y
yangbo 已提交
260

Z
zhang-daiyue 已提交
261
getPhotoAlbums(options: AlbumFetchOptions, callback: AsyncCallback<FetchResult<Album>>): void;
Y
yangbo 已提交
262

Z
zhang-daiyue 已提交
263 264

获取相册,使用callback方式返回结果。
Y
yangbo 已提交
265 266 267

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
268 269
**需要权限**:ohos.permission.READ_IMAGEVIDEO

Y
yangbo 已提交
270 271
**参数:**

Z
zhang-daiyue 已提交
272 273 274 275
| 参数名   | 类型                     | 必填 | 说明                      |
| -------- | ------------------------ | ---- | ------------------------- |
| options  | [AlbumFetchOptions](#albumfetchoptions)        | 是   | 相册检索选项              |
| callback |  AsyncCallback<[FetchResult](#fetchresult)<[Album](#album)>> | 是   | callback 返回相册检索结果 |
Y
yangbo 已提交
276 277 278 279

**示例:**

```ts
H
huweiqi 已提交
280 281
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
282
async function example() {
H
huweiqi 已提交
283
  console.info('getPhotoAlbumsDemo');
Z
zhang-daiyue 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296 297
  let predicates = new dataSharePredicates.DataSharePredicates();
  let albumFetchOptions = {
    predicates: predicates
  };

  mgr.getPhotoAlbums(albumFetchOptions, (err, fetchResult) => {
    if (fetchResult != undefined) {
      console.info('albums.count = ' + fetchResult.getCount());
      fetchResult.getFirstObject((err, album) => {
        if (album != undefined) {
          console.info('first album.albumName = ' + album.albumName);
        } else {
          console.info('album is undefined, err = ', err);
        }
H
huweiqi 已提交
298
      });
H
huweiqi 已提交
299 300
    } else {
      console.info('getPhotoAlbums fail, message = ', err);
Z
zhang-daiyue 已提交
301
    }
H
huweiqi 已提交
302
  });
Y
yangbo 已提交
303 304 305
}
```

Z
zhang-daiyue 已提交
306
### getPhotoAlbums
Y
yangbo 已提交
307

Z
zhang-daiyue 已提交
308
getPhotoAlbums(options: AlbumFetchOptions): Promise<FetchResult<Album>>;
Y
yangbo 已提交
309

310
获取相册,使用Promise方式返回结果。
Y
yangbo 已提交
311 312 313

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
314 315
**需要权限**:ohos.permission.READ_IMAGEVIDEO

Y
yangbo 已提交
316 317
**参数:**

Z
zhang-daiyue 已提交
318 319 320 321 322 323 324 325 326
| 参数名   | 类型                     | 必填 | 说明                      |
| -------- | ------------------------ | ---- | ------------------------- |
| options  | [AlbumFetchOptions](#albumfetchoptions)        | 是   | 相册检索选项              |

**返回值**

| 类型                        | 说明           |
| --------------------------- | -------------- |
| Promise<[FetchResult](#fetchresult)<[Album](#album)>> | Promise 返回相册检索结果 |
Y
yangbo 已提交
327 328 329 330

**示例:**

```ts
H
huweiqi 已提交
331 332
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
333
async function example() {
H
huweiqi 已提交
334
  console.info('getPhotoAlbumsDemo');
Z
zhang-daiyue 已提交
335 336 337 338 339 340 341 342 343 344 345 346
  let predicates = new dataSharePredicates.DataSharePredicates();
  let albumFetchOptions = {
    predicates: predicates
  };
  try {
    let fetchResult = await mgr.getPhotoAlbums(albumFetchOptions);
    console.info('album.count = ' + fetchResult.getCount());
    const album = await fetchResult.getFirstObject();
    console.info('first album.albumName = ' + album.albumName);
  } catch (err) {
    console.info('getPhotoAlbums fail, message = ' + err);
  }
Y
yangbo 已提交
347 348 349
}
```

Z
zhang-daiyue 已提交
350
### getPrivateAlbum
Y
yangbo 已提交
351

Z
zhang-daiyue 已提交
352
getPrivateAlbum(type: PrivateAlbumType, callback: AsyncCallback<FetchResult<PrivateAlbum>>): void;
Y
yangbo 已提交
353 354


Z
zhang-daiyue 已提交
355
获取系统相册,使用 callback 方式返回系统相册的数组。
李云帆 已提交
356

Y
yangbo 已提交
357 358
**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
359
**需要权限**:ohos.permission.READ_IMAGEVIDEO
Y
yangbo 已提交
360 361 362

**参数:**

Z
zhang-daiyue 已提交
363 364 365 366
| 参数名   | 类型                     | 必填 | 说明                      |
| -------- | ------------------------ | ---- | ------------------------- |
| type  | [PrivateAlbumType](#privatealbumtype)        | 是   | 系统相册类型              |
| callback |  AsyncCallback<[FetchResult](#fetchresult)<[PrivateAlbum](#privatealbum)>> | 是   | callback 返回相册检索结果 |
Y
yangbo 已提交
367 368 369 370

**示例:**

```ts
Z
zhang-daiyue 已提交
371
async function example() {
H
huweiqi 已提交
372
  console.info('getPrivateAlbumDemo');
Z
zhang-daiyue 已提交
373 374 375 376 377 378 379 380
  mgr.getPrivateAlbum(userFileManager.PrivateAlbumType.TYPE_TRASH, async (err, fetchResult) => {
    if (fetchResult != undefined) {
      let trashAlbum = await fetchResult.getFirstObject();
      console.info('first album.albumName = ' + trashAlbum.albumName);
    } else {
      console.info('getPrivateAlbum failed. message = ', err);
    }
  });
Y
yangbo 已提交
381 382 383
}
```

Z
zhang-daiyue 已提交
384
### getPrivateAlbum
Y
yangbo 已提交
385

Z
zhang-daiyue 已提交
386
getPrivateAlbum(type: PrivateAlbumType): Promise<FetchResult<PrivateAlbum>>;
Y
yangbo 已提交
387 388


Z
zhang-daiyue 已提交
389
获取系统相册,使用Promise方式返回结果。
李云帆 已提交
390

Y
yangbo 已提交
391 392
**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
393
**需要权限**:ohos.permission.READ_IMAGEVIDEO
Y
yangbo 已提交
394 395 396

**参数:**

Z
zhang-daiyue 已提交
397 398 399
| 参数名   | 类型                     | 必填 | 说明                      |
| -------- | ------------------------ | ---- | ------------------------- |
| type  | [PrivateAlbumType](#privatealbumtype)        | 是   | 系统相册类型              |
Y
yangbo 已提交
400 401 402

**返回值**

Z
zhang-daiyue 已提交
403 404 405
| 类型                        | 说明           |
| --------------------------- | -------------- |
| Promise<[FetchResult](#fetchresult)<[PrivateAlbum](#privatealbum)>> | Promise 返回相册检索结果 |
Y
yangbo 已提交
406 407 408 409

**示例:**

```ts
Z
zhang-daiyue 已提交
410 411 412
async function example() {
  console.info('getPrivateAlbumDemo');
  try {
413
    let fetchResult = await mgr.getPrivateAlbum(userFileManager.PrivateAlbumType.TYPE_TRASH);
Z
zhang-daiyue 已提交
414 415 416 417 418
    let trashAlbum = await fetchResult.getFirstObject();
    console.info('first album.albumName = ' + trashAlbum.albumName);
  } catch (err) {
    console.info('getPrivateAlbum failed. message = ', err);
  }
Y
yangbo 已提交
419 420 421
}
```

Z
zhang-daiyue 已提交
422
### getAudioAssets
Y
yangbo 已提交
423

Z
zhang-daiyue 已提交
424
getAudioAssets(options: FetchOptions, callback: AsyncCallback<FetchResult<FileAsset>>): void;
Y
yangbo 已提交
425 426


Z
zhang-daiyue 已提交
427
获取音频文件,使用callback方式返回结果。
李云帆 已提交
428

Y
yangbo 已提交
429 430
**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
431
**需要权限**:ohos.permission.READ_AUDIO
Y
yangbo 已提交
432 433 434

**参数:**

Z
zhang-daiyue 已提交
435 436 437
| 参数名   | 类型                     | 必填 | 说明                      |
| -------- | ------------------------ | ---- | ------------------------- |
| options  | [FetchOptions](#fetchoptions)        | 是   | 检索选项              |
438
| callback |  AsyncCallback<[FetchResult](#fetchresult)<[FileAsset](#fileasset)>> | 是   | callback 返回音频检索结果 |
Y
yangbo 已提交
439 440 441 442

**示例:**

```ts
H
huweiqi 已提交
443 444
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
445 446 447 448 449 450 451 452
async function example() {
  console.info('getAudioAssets');
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOptions = {
    fetchColumns: [],
    predicates: predicates
  };

H
huweiqi 已提交
453
  mgr.getAudioAssets(fetchOptions, async (err, fetchResult) => {
Z
zhang-daiyue 已提交
454 455 456 457 458 459 460 461
    if (fetchResult != undefined) {
      console.info('fetchFileResult success');
      let fileAsset = await fetchResult.getFirstObject();
      if (fileAsset != undefined) {
        console.info("fileAsset.displayName :" + fileAsset.displayName);
      }
    } else {
      console.info('fetchFileResult fail' + err);
Y
yangbo 已提交
462
    }
H
huweiqi 已提交
463
  });
Y
yangbo 已提交
464 465 466
}
```

Z
zhang-daiyue 已提交
467
### getAudioAssets
Y
yangbo 已提交
468

Z
zhang-daiyue 已提交
469
getAudioAssets(options: FetchOptions): Promise<FetchResult<FileAsset>>;
Y
yangbo 已提交
470 471


Z
zhang-daiyue 已提交
472
获取音频文件,使用callback方式返回结果。
李云帆 已提交
473

Y
yangbo 已提交
474 475
**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
476
**需要权限**:ohos.permission.READ_AUDIO
Y
yangbo 已提交
477 478 479

**参数:**

Z
zhang-daiyue 已提交
480 481 482
| 参数名   | 类型                     | 必填 | 说明                      |
| -------- | ------------------------ | ---- | ------------------------- |
| options  | [FetchOptions](#fetchoptions)        | 是   | 检索选项              |
Y
yangbo 已提交
483 484 485

**返回值**

Z
zhang-daiyue 已提交
486 487
| 类型                        | 说明           |
| --------------------------- | -------------- |
488
| Promise<[FetchResult](#fetchresult)<[FileAsset](#fileasset)>> | Promise 返回音频检索结果 |
Y
yangbo 已提交
489 490 491 492

**示例:**

```ts
H
huweiqi 已提交
493 494
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
495 496 497 498 499 500 501 502
async function example() {
  console.info('getAudioAssets');
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOptions = {
    fetchColumns: [],
    predicates: predicates
  };
  try {
H
huweiqi 已提交
503
    var fetchResult = await mgr.getAudioAssets(fetchOptions);
Z
zhang-daiyue 已提交
504 505 506 507 508 509 510 511 512
  } catch (err) {
    console.info('getAudioAssets failed, message = ', err);
  }

  if (fetchResult != undefined) {
    console.info('fetchFileResult success');
    let fileAsset = await fetchResult.getFirstObject();
    if (fileAsset != undefined) {
      console.info("fileAsset.displayName :" + fileAsset.displayName);
Y
yangbo 已提交
513
    }
Z
zhang-daiyue 已提交
514
  }
Y
yangbo 已提交
515 516
}
```
Z
zhang-daiyue 已提交
517
### delete
Y
yangbo 已提交
518

Z
zhang-daiyue 已提交
519
delete(uri: string, callback: AsyncCallback<void>): void;
Y
yangbo 已提交
520

H
huweiqi 已提交
521
删除媒体文件,删除的文件进入到回收站。
Y
yangbo 已提交
522

Z
zhang-daiyue 已提交
523
**需要权限**:ohos.permission.READ_IMAGEVIDEO 和 ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.READ_AUDIO 和 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
524

李云帆 已提交
525
**系统能力**:SystemCapability.FileManagement.UserFileManager.Core
Y
yangbo 已提交
526

Z
zhang-daiyue 已提交
527
**参数**
Y
yangbo 已提交
528

Z
zhang-daiyue 已提交
529 530 531 532
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| uri | string | 是   | 媒体文件uri |
| callback | AsyncCallback<void> | 是   | 回调返回空 |
Y
yangbo 已提交
533

Z
zhang-daiyue 已提交
534
**示例**
Y
yangbo 已提交
535 536

```ts
H
huweiqi 已提交
537 538
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
539
async function example() {
H
huweiqi 已提交
540
  console.info('deleteAssetDemo');
Z
zhang-daiyue 已提交
541 542 543 544 545 546 547 548 549
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOptions = {
    fetchColumns: [],
    predicates: predicates
  };
  try {
    const fetchResult = await mgr.getPhotoAssets(fetchOptions);
    var asset = await fetchResult.getFirstObject();
  } catch (err) {
H
huweiqi 已提交
550
    console.info('fetch failed, message =', err);
Z
zhang-daiyue 已提交
551 552 553
  }

  if (asset == undefined) {
H
huweiqi 已提交
554
    console.error('asset not exist');
Z
zhang-daiyue 已提交
555 556 557 558 559 560 561 562 563
    return;
  }
  mgr.delete(asset.uri, (err) => {
    if (err == undefined) {
      console.info("delete successfully");
    } else {
      console.info("delete failed with error:" + err);
    }
  });
Y
yangbo 已提交
564 565
}
```
Z
zhang-daiyue 已提交
566
### delete
Y
yangbo 已提交
567

Z
zhang-daiyue 已提交
568
delete(uri: string): Promise<void>;
Y
yangbo 已提交
569

H
huweiqi 已提交
570
删除媒体文件,删除的文件进入到回收站。
Y
yangbo 已提交
571

Z
zhang-daiyue 已提交
572
**需要权限**:ohos.permission.READ_IMAGEVIDEO 和 ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.READ_AUDIO 和 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
573

李云帆 已提交
574 575
**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
576
**参数**
Y
yangbo 已提交
577

Z
zhang-daiyue 已提交
578 579 580
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| uri | string | 是   | 媒体文件uri |
Y
yangbo 已提交
581

Z
zhang-daiyue 已提交
582
**返回值**
Y
yangbo 已提交
583

Z
zhang-daiyue 已提交
584 585 586
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise<void>| 回调返回空 |
Y
yangbo 已提交
587

Z
zhang-daiyue 已提交
588
**示例**
Y
yangbo 已提交
589 590

```ts
H
huweiqi 已提交
591 592
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
593
async function example() {
H
huweiqi 已提交
594
  console.info('deleteDemo');
Z
zhang-daiyue 已提交
595 596 597 598 599 600 601 602 603
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOptions = {
    fetchColumns: [],
    predicates: predicates
  };
  try {
    const fetchResult = await mgr.getPhotoAssets(fetchOptions);
    var asset = await fetchResult.getFirstObject();
  } catch (err) {
H
huweiqi 已提交
604
    console.info('fetch failed, message =', err);
Z
zhang-daiyue 已提交
605 606 607
  }

  if (asset == undefined) {
H
huweiqi 已提交
608
    console.error('asset not exist');
Z
zhang-daiyue 已提交
609 610 611 612 613 614 615 616
    return;
  }
  try {
    await mgr.delete(asset.uri);
    console.info("delete successfully");
  } catch (err) {
    console.info("delete failed with error:" + err);
  }
Y
yangbo 已提交
617 618 619
}
```

Z
zhang-daiyue 已提交
620
### on
Y
yangbo 已提交
621

Z
zhang-daiyue 已提交
622
on(type: ChangeEvent, callback: Callback<void>): void
Y
yangbo 已提交
623

Z
zhang-daiyue 已提交
624
打开文件管理库变更通知,使用callback方式返回异步结果。
李云帆 已提交
625 626

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core
Y
yangbo 已提交
627 628 629

**参数:**

Z
zhang-daiyue 已提交
630 631 632 633
| 参数名   | 类型                 | 必填 | 说明                                                         |
| -------- | -------------------- | ---- | ------------------------------------------------------------ |
| type     | [ChangeEvent](#changeevent)               | 是   | 媒体类型 <br/>'deviceChange':&nbsp;注册设备变更 <br/>'albumChange':&nbsp;相册变更<br/>'imageChange':&nbsp;图片文件变更<br/>'audioChange': &nbsp;音频文件变更<br/>'videoChange':  &nbsp;视频文件变更<br/>'remoteFileChange':&nbsp;注册设备上文件变更 |
| callback | Callback&lt;void&gt; | 是   | 回调返回空                                                   |
Y
yangbo 已提交
634 635 636 637

**示例:**

```ts
Z
zhang-daiyue 已提交
638
async function example() {
H
huweiqi 已提交
639
  console.info('onDemo');
H
huweiqi 已提交
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
  let count = 0;
  mgr.on('imageChange', () => {
    count++;
    // image file had changed, do something
  });
  try {
    let testFileName = "testFile" + Date.now() + ".jpg";
    let fileAsset = await mgr.createPhotoAsset(testFileName);
    console.info('createPhotoAsset file displayName' + fileAsset.displayName);
    console.info('createPhotoAsset successfully');
  } catch (err) {
    console.info('createPhotoAsset failed, message = ' + err);
  }
  //sleep 1s
  if (count > 0) {
    console.info("onDemo success");
  } else {
    console.info("onDemo fail");
  }
  mgr.off('imageChange', () => {
    // stop listening success
  });
Y
yangbo 已提交
662 663 664
}
```

Z
zhang-daiyue 已提交
665
### off
Y
yangbo 已提交
666

Z
zhang-daiyue 已提交
667
off(type: ChangeEvent, callback?: Callback&lt;void&gt;): void
Y
yangbo 已提交
668

Z
zhang-daiyue 已提交
669
关闭文件管理库变更通知,使用callback方式返回异步结果。
李云帆 已提交
670 671

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core
Y
yangbo 已提交
672 673 674

**参数:**

Z
zhang-daiyue 已提交
675 676 677 678
| 参数名   | 类型                 | 必填 | 说明                                                         |
| -------- | -------------------- | ---- | ------------------------------------------------------------ |
| type     | [ChangeEvent](#changeevent)               | 是   | 媒体类型 <br/>'deviceChange':&nbsp;注册设备变更 <br/>'albumChange':&nbsp;相册变更<br/>'imageChange':&nbsp;图片文件变更<br/>'audioChange': &nbsp;音频文件变更<br/>'videoChange':  &nbsp;视频文件变更<br/>'remoteFileChange':&nbsp;注册设备上文件变更 |
| callback | Callback&lt;void&gt; | 否   | 回调返回空                                                   |
Y
yangbo 已提交
679 680 681 682

**示例:**

```ts
Z
zhang-daiyue 已提交
683
async function example() {
H
huweiqi 已提交
684
  console.info('offDemo');
H
huweiqi 已提交
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708
  let count = 0;
  mgr.on('imageChange', () => {
    count++;
    // image file had changed, do something
  });

  mgr.off('imageChange', () => {
    // stop listening success
  });

  try {
    let testFileName = "testFile" + Date.now() + ".jpg";
    let fileAsset = await mgr.createPhotoAsset(testFileName);
    console.info('createPhotoAsset file displayName' + fileAsset.displayName);
    console.info('createPhotoAsset successfully');
  } catch (err) {
    console.info('createPhotoAsset failed, message = ' + err);
  }
  //sleep 1s
  if (count == 0) {
    console.info("offDemo success");
  } else {
    console.info("offDemo fail");
  }
Y
yangbo 已提交
709 710 711 712 713
}
```

### getActivePeers

Z
zhang-daiyue 已提交
714
getActivePeers(callback: AsyncCallback&lt;Array&lt;PeerInfo&gt;&gt;): void;
Y
yangbo 已提交
715 716 717 718 719 720 721 722 723

获取在线对端设备的信息,使用callback方式返回异步结果。

**系统能力**:SystemCapability.FileManagement.UserFileManager.DistributedCore

**参数:**

| 参数名   | 类型                              | 必填 | 说明         |
| -------- | --------------------------------- | ---- | ------------ |
Z
zhang-daiyue 已提交
724
| callback | AsyncCallback&lt;Array&lt;[PeerInfo](#peerinfo)&gt;&gt; | 是   | 返回在线设备列表 |
Y
yangbo 已提交
725 726 727 728

**示例:**

```ts
Z
zhang-daiyue 已提交
729
async function example() {
H
huweiqi 已提交
730
  console.info('getActivePeersDemo');
Z
zhang-daiyue 已提交
731 732
  mgr.getActivePeers((err, devicesInfo) => {
    if (devicesInfo != undefined) {
H
huweiqi 已提交
733
      console.log('getActivePeers succeed.');
Z
zhang-daiyue 已提交
734 735 736 737
      for (let i = 0; i < devicesInfo.length; i++) {
        console.info('get distributed info ' + devicesInfo[i].deviceName + devicesInfo[i].networkId);
      }
    } else {
H
huweiqi 已提交
738
      console.info('getActivePeers failed. message = ', err);
Z
zhang-daiyue 已提交
739 740
    }
  });
Y
yangbo 已提交
741 742 743 744 745
}
```

### getActivePeers

Z
zhang-daiyue 已提交
746
getActivePeers(): Promise&lt;Array&lt;PeerInfo&gt;&gt;;
Y
yangbo 已提交
747 748 749 750 751 752 753 754 755

获取在线对端设备的信息,使用promise方式返回异步结果。

**系统能力**:SystemCapability.FileManagement.UserFileManager.DistributedCore

**返回值:**

| 类型                        | 说明                          |
| --------------------------- | ----------------------------- |
Z
zhang-daiyue 已提交
756
| Promise&lt;Array&lt;[PeerInfo](#peerinfo)&gt;&gt; | Promise实例,返回在线设备列表 |
Y
yangbo 已提交
757 758 759 760

**示例:**

```ts
Z
zhang-daiyue 已提交
761
async function example() {
H
huweiqi 已提交
762
  console.info('getActivePeersDemo');
Z
zhang-daiyue 已提交
763 764 765
  try {
    var devicesInfo = await mgr.getActivePeers();
  } catch (err) {
H
huweiqi 已提交
766
    console.info('getActivePeers failed. message = ', err);
Z
zhang-daiyue 已提交
767 768
  }
  if (devicesInfo != undefined) {
H
huweiqi 已提交
769
    console.log('getActivePeers succeed.');
Z
zhang-daiyue 已提交
770 771
    for (let i = 0; i < devicesInfo.length; i++) {
      console.info('get distributed info ' + devicesInfo[i].deviceName + devicesInfo[i].networkId);
Y
yangbo 已提交
772
    }
Z
zhang-daiyue 已提交
773
  } else {
H
huweiqi 已提交
774
    console.info('get distributed fail');
Z
zhang-daiyue 已提交
775
  }
Y
yangbo 已提交
776 777 778 779 780
}
```

### getAllPeers

Z
zhang-daiyue 已提交
781
getAllPeers(callback: AsyncCallback&lt;Array&lt;PeerInfo&gt;&gt;): void;
Y
yangbo 已提交
782 783 784 785 786 787 788 789 790

获取所有对端设备的信息,使用callback方式返回异步结果。

**系统能力**:SystemCapability.FileManagement.UserFileManager.DistributedCore

**参数:**

| 参数名   | 类型                              | 必填 | 说明         |
| -------- | --------------------------------- | ---- | ------------ |
Z
zhang-daiyue 已提交
791
| callback | AsyncCallback&lt;Array&lt;[PeerInfo](#peerinfo)&gt;&gt; | 是   | 返回在线设备列表 |
Y
yangbo 已提交
792 793 794 795

**示例:**

```ts
Z
zhang-daiyue 已提交
796
async function example() {
H
huweiqi 已提交
797
  console.info('getAllPeersDemo');
Z
zhang-daiyue 已提交
798 799
  mgr.getAllPeers((err, devicesInfo) => {
    if (devicesInfo != undefined) {
H
huweiqi 已提交
800
      console.log('getAllPeers succeed.');
Z
zhang-daiyue 已提交
801 802 803 804
      for (let i = 0; i < devicesInfo.length; i++) {
        console.info('get distributed info ' + devicesInfo[i].deviceName + devicesInfo[i].networkId);
      }
    } else {
H
huweiqi 已提交
805
      console.info('getAllPeers failed. message = ', err);
Z
zhang-daiyue 已提交
806 807
    }
  });
Y
yangbo 已提交
808 809 810 811 812
}
```

### getAllPeers

Z
zhang-daiyue 已提交
813
getAllPeers(): Promise&lt;Array&lt;PeerInfo&gt;&gt;;
Y
yangbo 已提交
814 815 816 817 818 819 820 821 822

获取所有对端设备的信息,使用promise方式返回异步结果。

**系统能力**:SystemCapability.FileManagement.UserFileManager.DistributedCore

**返回值:**

| 类型                        | 说明                          |
| --------------------------- | ----------------------------- |
Z
zhang-daiyue 已提交
823
| Promise&lt;Array&lt;[PeerInfo](#peerinfo)&gt;&gt; | Promise实例,返回所有设备列表 |
Y
yangbo 已提交
824 825 826 827

**示例:**

```ts
Z
zhang-daiyue 已提交
828
async function example() {
H
huweiqi 已提交
829
  console.info('getAllPeersDemo');
Z
zhang-daiyue 已提交
830 831 832
  try {
    var devicesInfo = await mgr.getAllPeers();
  } catch (err) {
H
huweiqi 已提交
833
    console.info('getAllPeers failed. message = ', err);
Z
zhang-daiyue 已提交
834 835
  }
  if (devicesInfo != undefined) {
H
huweiqi 已提交
836
    console.log('getAllPeers succeed.');
Z
zhang-daiyue 已提交
837 838
    for (let i = 0; i < devicesInfo.length; i++) {
      console.info('get distributed info ' + devicesInfo[i].deviceName + devicesInfo[i].networkId);
Y
yangbo 已提交
839
    }
Z
zhang-daiyue 已提交
840
  } else {
H
huweiqi 已提交
841
    console.info('get distributed fail');
Z
zhang-daiyue 已提交
842
  }
Y
yangbo 已提交
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
}
```

### release

release(callback: AsyncCallback&lt;void&gt;): void

释放UserFileManager实例。
当后续不需要使用UserFileManager实例中的方法时调用。

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:**

| 参数名   | 类型                      | 必填 | 说明                 |
| -------- | ------------------------- | ---- | -------------------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调表示成功还是失败 |

**示例:**

```ts
Z
zhang-daiyue 已提交
864 865 866 867 868 869 870 871
async function example() {
  console.info('releaseDemo');
  mgr.release((err) => {
    if (err != undefined) {
      console.info('release failed. message = ', err);
    } else {
      console.info('release ok.');
    }
H
huweiqi 已提交
872
  });
Y
yangbo 已提交
873 874 875 876 877 878 879 880 881 882
}
```

### release

release(): Promise&lt;void&gt;

释放UserFileManager实例。
当后续不需要使用UserFileManager 实例中的方法时调用。

李云帆 已提交
883
**系统能力**:SystemCapability.FileManagement.UserFileManager.Core
Y
yangbo 已提交
884 885 886 887 888 889 890 891 892 893

**返回值:**

| 类型                | 说明                              |
| ------------------- | --------------------------------- |
| Promise&lt;void&gt; | Promise实例,用于获取异步返回结果 |

**示例:**

```ts
Z
zhang-daiyue 已提交
894 895 896 897 898 899 900 901
async function example() {
  console.info('releaseDemo');
  try {
    await mgr.release();
    console.info('release ok.');
  } catch (err) {
    console.info('release failed. message = ', err);
  }
Y
yangbo 已提交
902 903 904 905 906 907 908 909 910 911 912 913 914 915
}
```

## FileAsset

提供封装文件属性的方法。

### 属性

**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core

| 名称                      | 类型                     | 可读 | 可写 | 说明                                                   |
| ------------------------- | ------------------------ | ---- | ---- | ------------------------------------------------------ |
| uri                       | string                   | 是   | 否   | 文件资源uri(如:dataability:///media/image/2)         |
Z
zhang-daiyue 已提交
916
| fileType   | [FileType](#filetype) | 是   | 否   | 媒体文件类型                                               |
Y
yangbo 已提交
917 918 919
| displayName               | string                   | 是   | 是   | 显示文件名,包含后缀名                                 |


Z
zhang-daiyue 已提交
920
### get
Y
yangbo 已提交
921

Z
zhang-daiyue 已提交
922
get(member: string): MemberType;
Y
yangbo 已提交
923

H
huweiqi 已提交
924
获取FileAsset成员参数。
Y
yangbo 已提交
925 926 927 928 929

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:**

Z
zhang-daiyue 已提交
930 931 932
| 参数名      | 类型                        | 必填   | 说明    |
| -------- | ------------------------- | ---- | ----- |
| member | string | 是    | 成员参数名称例如:ImageVideoKey.URI |
Y
yangbo 已提交
933 934

**示例:**
H
huweiqi 已提交
935

Z
zhang-daiyue 已提交
936
```ts
H
huweiqi 已提交
937 938
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
939
async function example() {
H
huweiqi 已提交
940
  console.info('fileAssetGetDemo');
Z
zhang-daiyue 已提交
941 942 943 944 945
  try {
    let predicates = new dataSharePredicates.DataSharePredicates();
    let fetchOption = {
      fetchColumns: [],
      predicates: predicates
Y
yangbo 已提交
946
    };
Z
zhang-daiyue 已提交
947 948
    let fetchResult = await mgr.getPhotoAssets(fetchOption);
    let fileAsset = await fetchResult.getFirstObject();
H
huweiqi 已提交
949 950
    let title = userFileManager.ImageVideoKey.TITLE;
    let fileAssetTitle = fileAsset.get(title.toString());
Z
zhang-daiyue 已提交
951 952 953 954
    console.info('fileAsset Get fileAssetTitle = ', fileAssetTitle);
  } catch (err) {
    console.info('release failed. message = ', err);
  }
Y
yangbo 已提交
955 956 957
}
```

Z
zhang-daiyue 已提交
958
### set
Y
yangbo 已提交
959

Z
zhang-daiyue 已提交
960
set(member: string, value: string): void;
Y
yangbo 已提交
961

H
huweiqi 已提交
962
设置FileAsset成员参数。
Y
yangbo 已提交
963 964 965

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
966
**参数:**
Y
yangbo 已提交
967

Z
zhang-daiyue 已提交
968 969 970 971
| 参数名      | 类型                        | 必填   | 说明    |
| -------- | ------------------------- | ---- | ----- |
| member | string | 是    | 成员参数名称例如:ImageVideoKey.URI |
| value | string | 是    | 设置成员参数名称,只能修改ImageVideoKey.TITLE的值 |
Y
yangbo 已提交
972 973

**示例:**
H
huweiqi 已提交
974

Z
zhang-daiyue 已提交
975
```ts
H
huweiqi 已提交
976 977
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
978
async function example() {
H
huweiqi 已提交
979
  console.info('fileAssetSetDemo');
Z
zhang-daiyue 已提交
980 981 982 983 984
  try {
    let predicates = new dataSharePredicates.DataSharePredicates();
    let fetchOption = {
      fetchColumns: [],
      predicates: predicates
Y
yangbo 已提交
985
    };
Z
zhang-daiyue 已提交
986 987
    let fetchResult = await mgr.getPhotoAssets(fetchOption);
    let fileAsset = await fetchResult.getFirstObject();
H
huweiqi 已提交
988 989
    let title = userFileManager.ImageVideoKey.TITLE;
    fileAsset.set(title.toString(), "newTitle");
Z
zhang-daiyue 已提交
990 991 992
  } catch (err) {
    console.info('release failed. message = ', err);
  }
Y
yangbo 已提交
993 994 995 996 997 998 999 1000 1001
}
```

### commitModify

commitModify(callback: AsyncCallback&lt;void&gt;): void

修改文件的元数据,使用callback方式返回异步结果。

Z
zhang-daiyue 已提交
1002
**需要权限**:ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:**

| 参数名      | 类型                        | 必填   | 说明    |
| -------- | ------------------------- | ---- | ----- |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空 |

**示例:**

Z
zhang-daiyue 已提交
1014
```ts
H
huweiqi 已提交
1015 1016
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1017
async function example() {
H
huweiqi 已提交
1018
  console.info('commitModifyDemo');
Z
zhang-daiyue 已提交
1019 1020 1021 1022 1023 1024 1025
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  let fileAsset = await fetchResult.getFirstObject();
H
huweiqi 已提交
1026 1027
  let title = userFileManager.ImageVideoKey.TITLE;
  let fileAssetTitle = fileAsset.get(title.toString());
Z
zhang-daiyue 已提交
1028
  console.info('fileAsset Get fileAssetTitle = ', fileAssetTitle);
H
huweiqi 已提交
1029
  fileAsset.set(title.toString(), "newTitle");
Z
zhang-daiyue 已提交
1030 1031
  fileAsset.commitModify((err) => {
    if (err == undefined) {
H
huweiqi 已提交
1032
      let newFileAssetTitle = fileAsset.get(title.toString());
Z
zhang-daiyue 已提交
1033 1034 1035 1036 1037
      console.info('fileAsset Get newFileAssetTitle = ', newFileAssetTitle);
    } else {
      console.info('commitModify failed, message =', err);
    }
  });
Y
yangbo 已提交
1038 1039 1040 1041 1042 1043 1044 1045 1046
}
```

### commitModify

commitModify(): Promise&lt;void&gt;

修改文件的元数据,使用promise方式返回异步结果。

Z
zhang-daiyue 已提交
1047
**需要权限**:ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
1048 1049 1050 1051 1052 1053 1054 1055 1056

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**返回值:**

| 类型                  | 说明         |
| ------------------- | ---------- |
| Promise&lt;void&gt; | Promise返回空 |

Z
zhang-daiyue 已提交
1057
**示例:**  
Y
yangbo 已提交
1058

Z
zhang-daiyue 已提交
1059
```ts
H
huweiqi 已提交
1060 1061
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1062
async function example() {
H
huweiqi 已提交
1063
  console.info('commitModifyDemo');
Z
zhang-daiyue 已提交
1064 1065 1066 1067 1068 1069 1070
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  let fileAsset = await fetchResult.getFirstObject();
H
huweiqi 已提交
1071 1072
  let title = userFileManager.ImageVideoKey.TITLE;
  let fileAssetTitle = fileAsset.get(title.toString());
Z
zhang-daiyue 已提交
1073
  console.info('fileAsset Get fileAssetTitle = ', fileAssetTitle);
H
huweiqi 已提交
1074
  fileAsset.set(title.toString(), "newTitle");
Z
zhang-daiyue 已提交
1075
  try {
H
huweiqi 已提交
1076 1077
    await fileAsset.commitModify();
    let newFileAssetTitle = fileAsset.get(title.toString());
Z
zhang-daiyue 已提交
1078 1079 1080 1081
    console.info('fileAsset Get newFileAssetTitle = ', newFileAssetTitle);
  } catch (err) {
    console.info('release failed. message = ', err);
  }
Y
yangbo 已提交
1082 1083 1084 1085 1086 1087 1088 1089 1090
}
```

### open

open(mode: string, callback: AsyncCallback&lt;number&gt;): void

打开当前文件,使用callback方式返回异步结果。

H
huweiqi 已提交
1091
**注意**:当前写操作是互斥的操作,写操作完成后需要调用close进行释放。
Y
yangbo 已提交
1092

H
huweiqi 已提交
1093
**需要权限**:ohos.permission.READ_IMAGEVIDEO 或 ohos.permission.READ_AUDIO 或 ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
1094 1095 1096 1097 1098 1099 1100 1101 1102


**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

| 参数名      | 类型                          | 必填   | 说明                                  |
| -------- | --------------------------- | ---- | ----------------------------------- |
| mode     | string                      | 是    | 打开文件方式,如:'r'(只读), 'w'(只写), 'rw'(读写) |
1103
| callback | AsyncCallback&lt;number&gt; | 是    | 回调返回文件描述符                            |
Y
yangbo 已提交
1104 1105 1106

**示例:**

Z
zhang-daiyue 已提交
1107
```ts
Y
yangbo 已提交
1108
async function example() {
H
huweiqi 已提交
1109
  console.info('openDemo');
H
huweiqi 已提交
1110 1111
   let testFileName = "testFile" + Date.now() + ".jpg";
  const fileAsset = await mgr.createPhotoAsset(testFileName);
Z
zhang-daiyue 已提交
1112 1113 1114
  fileAsset.open('rw', (err, fd) => {
    if (fd != undefined) {
      console.info('File fd' + fd);
H
huweiqi 已提交
1115
      fileAsset.close(fd);
Z
zhang-daiyue 已提交
1116 1117 1118 1119
    } else {
      console.info('File err' + err);
    }
  });
Y
yangbo 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128
}
```

### open

open(mode: string): Promise&lt;number&gt;

打开当前文件,使用promise方式返回异步结果。

H
huweiqi 已提交
1129
**注意**:当前写操作是互斥的操作,写操作完成后需要调用close进行释放。
Y
yangbo 已提交
1130

H
huweiqi 已提交
1131
**需要权限**:ohos.permission.READ_IMAGEVIDEO 或 ohos.permission.READ_AUDIO 或 ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:**

| 参数名  | 类型     | 必填   | 说明                                  |
| ---- | ------ | ---- | ----------------------------------- |
| mode | string | 是    | 打开文件方式,如:'r'(只读), 'w'(只写), 'rw'(读写) |

**返回值:**

| 类型                    | 说明            |
| --------------------- | ------------- |
1145
| Promise&lt;number&gt; | Promise返回文件描述符 |
Y
yangbo 已提交
1146 1147 1148

**示例:**

Z
zhang-daiyue 已提交
1149
```ts
Y
yangbo 已提交
1150
async function example() {
H
huweiqi 已提交
1151
  console.info('openDemo');
Z
zhang-daiyue 已提交
1152
  try {
H
huweiqi 已提交
1153 1154
    let testFileName = "testFile" + Date.now() + ".jpg";
    const fileAsset = await mgr.createPhotoAsset(testFileName);
H
huweiqi 已提交
1155
    let fd = await fileAsset.open('rw');
Z
zhang-daiyue 已提交
1156 1157
    if (fd != undefined) {
      console.info('File fd' + fd);
H
huweiqi 已提交
1158
      fileAsset.close(fd);
Z
zhang-daiyue 已提交
1159 1160 1161 1162 1163 1164
    } else {
      console.info(' open File fail');
    }
  } catch (err) {
    console.info('open Demo err' + err);
  }
Y
yangbo 已提交
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
}
```

### close

close(fd: number, callback: AsyncCallback&lt;void&gt;): void

关闭当前文件,使用callback方式返回异步结果。

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:**

| 参数名      | 类型                        | 必填   | 说明    |
| -------- | ------------------------- | ---- | ----- |
| fd       | number                    | 是    | 文件描述符 |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空 |

**示例:**

Z
zhang-daiyue 已提交
1185
```ts
H
huweiqi 已提交
1186 1187
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1188
async function example() {
H
huweiqi 已提交
1189
  console.info('closeDemo');
Z
zhang-daiyue 已提交
1190 1191 1192 1193 1194
  try {
    let predicates = new dataSharePredicates.DataSharePredicates();
    let fetchOption = {
      fetchColumns: [],
      predicates: predicates
Y
yangbo 已提交
1195
    };
Z
zhang-daiyue 已提交
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
    let fetchResult = await mgr.getPhotoAssets(fetchOption);
    const fileAsset = await fetchResult.getFirstObject();
    let fd = await fileAsset.open('rw');
    console.info('file fd', fd);
    fileAsset.close(fd, (err) => {
      if (err == undefined) {
        console.info('asset close succeed.');
      } else {
        console.info('close failed, message = ' + err);
      }
Y
yangbo 已提交
1206
    });
Z
zhang-daiyue 已提交
1207 1208 1209
  } catch (err) {
    console.info('close failed, message = ' + err);
  }
Y
yangbo 已提交
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
}
```

### close

close(fd: number): Promise&lt;void&gt;

关闭当前文件,使用promise方式返回异步结果。

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:**

| 参数名  | 类型     | 必填   | 说明    |
| ---- | ------ | ---- | ----- |
| fd   | number | 是    | 文件描述符 |

**返回值:**

| 类型                  | 说明         |
| ------------------- | ---------- |
| Promise&lt;void&gt; | Promise返回空 |

**示例:**

Z
zhang-daiyue 已提交
1235
```ts
H
huweiqi 已提交
1236 1237
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1238
async function example() {
H
huweiqi 已提交
1239
  console.info('closeDemo');
Z
zhang-daiyue 已提交
1240 1241 1242 1243 1244
  try {
    let predicates = new dataSharePredicates.DataSharePredicates();
    let fetchOption = {
      fetchColumns: [],
      predicates: predicates
Y
yangbo 已提交
1245
    };
Z
zhang-daiyue 已提交
1246 1247 1248 1249
    let fetchResult = await mgr.getPhotoAssets(fetchOption);
    const asset = await fetchResult.getFirstObject();
    let fd = await asset.open('rw');
    console.info('file fd', fd);
H
huweiqi 已提交
1250
    await asset.close(fd);
Z
zhang-daiyue 已提交
1251 1252 1253 1254
    console.info('asset close succeed.');
  } catch (err) {
    console.info('close failed, message = ' + err);
  }
Y
yangbo 已提交
1255 1256 1257 1258 1259 1260 1261 1262 1263
}
```

### getThumbnail

getThumbnail(callback: AsyncCallback&lt;image.PixelMap&gt;): void

获取文件的缩略图,使用callback方式返回异步结果。

Z
zhang-daiyue 已提交
1264
**需要权限**:ohos.permission.READ_IMAGEVIDEO 或 ohos.permission.READ_AUDIO
Y
yangbo 已提交
1265 1266 1267 1268 1269 1270 1271

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:**

| 参数名      | 类型                                  | 必填   | 说明               |
| -------- | ----------------------------------- | ---- | ---------------- |
Z
zengyawen 已提交
1272
| callback | AsyncCallback&lt;[image.PixelMap](js-apis-image.md#pixelmap7)&gt; | 是    | 回调返回缩略图的PixelMap |
Y
yangbo 已提交
1273 1274 1275

**示例:**

Z
zhang-daiyue 已提交
1276
```ts
H
huweiqi 已提交
1277 1278
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1279
async function example() {
H
huweiqi 已提交
1280
  console.info('getThumbnailDemo');
Z
zhang-daiyue 已提交
1281 1282 1283 1284 1285 1286 1287
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  const asset = await fetchResult.getFirstObject();
H
huweiqi 已提交
1288
  console.info('asset displayName = ', asset.displayName);
Z
zhang-daiyue 已提交
1289 1290 1291 1292 1293 1294 1295
  asset.getThumbnail((err, pixelMap) => {
    if (err == undefined) {
      console.info('getThumbnail successful ' + pixelMap);
    } else {
      console.info('getThumbnail fail', err);
    }
  });
Y
yangbo 已提交
1296 1297 1298 1299 1300
}
```

### getThumbnail

H
huweiqi 已提交
1301
getThumbnail(size: image.Size, callback: AsyncCallback&lt;image.PixelMap&gt;): void
Y
yangbo 已提交
1302 1303 1304

获取文件的缩略图,传入缩略图尺寸,使用callback方式返回异步结果。

Z
zhang-daiyue 已提交
1305
**需要权限**:ohos.permission.READ_IMAGEVIDEO 或 ohos.permission.READ_AUDIO
Y
yangbo 已提交
1306 1307 1308 1309 1310 1311 1312

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:**

| 参数名      | 类型                                  | 必填   | 说明               |
| -------- | ----------------------------------- | ---- | ---------------- |
1313
| size     | [image.Size](js-apis-image.md#size) | 是    | 缩略图尺寸            |
Z
zengyawen 已提交
1314
| callback | AsyncCallback&lt;[image.PixelMap](js-apis-image.md#pixelmap7)&gt; | 是    | 回调返回缩略图的PixelMap |
Y
yangbo 已提交
1315 1316 1317

**示例:**

Z
zhang-daiyue 已提交
1318
```ts
H
huweiqi 已提交
1319 1320
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1321
async function example() {
H
huweiqi 已提交
1322
  console.info('getThumbnailDemo');
Z
zhang-daiyue 已提交
1323 1324 1325 1326 1327 1328 1329 1330
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let size = { width: 720, height: 720 };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  const asset = await fetchResult.getFirstObject();
H
huweiqi 已提交
1331
  console.info('asset displayName = ', asset.displayName);
Z
zhang-daiyue 已提交
1332 1333 1334 1335 1336
  asset.getThumbnail(size, (err, pixelMap) => {
    if (err == undefined) {
      console.info('getThumbnail successful ' + pixelMap);
    } else {
      console.info('getThumbnail fail', err);
Y
yangbo 已提交
1337
    }
Z
zhang-daiyue 已提交
1338
  });
Y
yangbo 已提交
1339 1340 1341
}
```

Z
zhang-daiyue 已提交
1342
### getThumbnail
Y
yangbo 已提交
1343

H
huweiqi 已提交
1344
getThumbnail(size?: image.Size): Promise&lt;image.PixelMap&gt;
Y
yangbo 已提交
1345

Z
zhang-daiyue 已提交
1346
获取文件的缩略图,传入缩略图尺寸,使用promise方式返回异步结果。
Y
yangbo 已提交
1347

Z
zhang-daiyue 已提交
1348
**需要权限**:ohos.permission.READ_IMAGEVIDEO 或 ohos.permission.READ_AUDIO
Y
yangbo 已提交
1349 1350 1351 1352 1353

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:**

Z
zhang-daiyue 已提交
1354 1355
| 参数名  | 类型             | 必填   | 说明    |
| ---- | -------------- | ---- | ----- |
1356
| size | [image.Size](js-apis-image.md#size) | 否    | 缩略图尺寸 |
Y
yangbo 已提交
1357 1358 1359

**返回值:**

Z
zhang-daiyue 已提交
1360 1361
| 类型                            | 说明                    |
| ----------------------------- | --------------------- |
Z
zengyawen 已提交
1362
| Promise&lt;[image.PixelMap](js-apis-image.md#pixelmap7)&gt; | Promise返回缩略图的PixelMap |
Y
yangbo 已提交
1363 1364 1365

**示例:**

Z
zhang-daiyue 已提交
1366
```ts
H
huweiqi 已提交
1367 1368
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1369
async function example() {
H
huweiqi 已提交
1370
  console.info('getThumbnailDemo');
Z
zhang-daiyue 已提交
1371 1372 1373 1374 1375 1376 1377 1378
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let size = { width: 720, height: 720 };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  const asset = await fetchResult.getFirstObject();
H
huweiqi 已提交
1379
  console.info('asset displayName = ', asset.displayName);
Z
zhang-daiyue 已提交
1380 1381 1382 1383 1384
  asset.getThumbnail(size).then((pixelMap) => {
    console.info('getThumbnail successful ' + pixelMap);
  }).catch((err) => {
    console.info('getThumbnail fail' + err);
  });
Y
yangbo 已提交
1385 1386 1387
}
```

Z
zhang-daiyue 已提交
1388 1389 1390
### favorite

favorite(isFavorite: boolean, callback: AsyncCallback&lt;void&gt;): void
Y
yangbo 已提交
1391

Z
zhang-daiyue 已提交
1392
将文件设置为收藏文件,使用callback方式返回异步结果。
Y
yangbo 已提交
1393

Z
zhang-daiyue 已提交
1394
**需要权限**:ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
1395 1396 1397 1398 1399

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数:**

Z
zhang-daiyue 已提交
1400 1401 1402 1403
| 参数名        | 类型                        | 必填   | 说明                                 |
| ---------- | ------------------------- | ---- | ---------------------------------- |
| isFavorite | boolean                   | 是    | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
| callback   | AsyncCallback&lt;void&gt; | 是    | 回调返回空                              |
Y
yangbo 已提交
1404 1405 1406

**示例:**

Z
zhang-daiyue 已提交
1407
```ts
H
huweiqi 已提交
1408 1409
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1410
async function example() {
H
huweiqi 已提交
1411
  console.info('favoriteDemo');
Z
zhang-daiyue 已提交
1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  const asset = await fetchResult.getFirstObject();
  asset.favorite(true, (err) => {
    if (err == undefined) {
      console.info("favorite successfully");
    } else {
      console.info("favorite failed with error:" + err);
    }
  });
Y
yangbo 已提交
1426 1427 1428
}
```

Z
zhang-daiyue 已提交
1429 1430 1431
### favorite

favorite(isFavorite: boolean): Promise&lt;void&gt;
Y
yangbo 已提交
1432

Z
zhang-daiyue 已提交
1433
将文件设置为收藏文件,使用promise方式返回异步结果。
Y
yangbo 已提交
1434

Z
zhang-daiyue 已提交
1435
**需要权限**:ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
1436 1437 1438

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

Z
zhang-daiyue 已提交
1439 1440 1441 1442 1443 1444
**参数:**

| 参数名        | 类型      | 必填   | 说明                                 |
| ---------- | ------- | ---- | ---------------------------------- |
| isFavorite | boolean | 是    | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |

Y
yangbo 已提交
1445 1446
**返回值:**

Z
zhang-daiyue 已提交
1447 1448 1449
| 类型                  | 说明         |
| ------------------- | ---------- |
| Promise&lt;void&gt; | Promise返回空 |
Y
yangbo 已提交
1450 1451 1452

**示例:**

Z
zhang-daiyue 已提交
1453
```ts
H
huweiqi 已提交
1454 1455
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1456
async function example() {
H
huweiqi 已提交
1457
  console.info('favoriteDemo');
Z
zhang-daiyue 已提交
1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  const asset = await fetchResult.getFirstObject();
  asset.favorite(true).then(function () {
    console.info("favorite successfully");
  }).catch(function (err) {
    console.info("favorite failed with error:" + err);
  });
Y
yangbo 已提交
1470 1471 1472
}
```

Z
zhang-daiyue 已提交
1473
## FetchResult
Y
yangbo 已提交
1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492

文件检索结果集。

### getCount

getCount(): number

获取文件检索结果中的文件总数。

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**返回值**

| 类型     | 说明       |
| ------ | -------- |
| number | 检索到的文件总数 |

**示例**

Z
zhang-daiyue 已提交
1493
```ts
H
huweiqi 已提交
1494 1495
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1496
async function example() {
H
huweiqi 已提交
1497
  console.info('getCountDemo');
Z
zhang-daiyue 已提交
1498 1499 1500 1501 1502 1503 1504
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  const fetchCount = fetchResult.getCount();
H
huweiqi 已提交
1505
  console.info('fetchCount = ', fetchCount);
Y
yangbo 已提交
1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
}
```

### isAfterLast

isAfterLast(): boolean

检查结果集是否指向最后一行。

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**返回值**

| 类型      | 说明                                 |
| ------- | ---------------------------------- |
| boolean | 当读到最后一条记录后,后续没有记录返回true,否则返回false。 |

**示例**

Z
zhang-daiyue 已提交
1525
```ts
H
huweiqi 已提交
1526 1527
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1528
async function example() {
Z
zhang-daiyue 已提交
1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  const fetchCount = fetchResult.getCount();
  console.info('count:' + fetchCount);
  let fileAsset = await fetchResult.getLastObject();
  if (!fetchResult.isAfterLast()) {
    console.info('fileAsset isAfterLast displayName = ', fileAsset.displayName);
  } else {
    console.info('fileAsset  not isAfterLast ');
  }
Y
yangbo 已提交
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555
}
```

### close

close(): void

释放 FetchFileResult 实例并使其失效。无法调用其他方法。

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**示例**

Z
zhang-daiyue 已提交
1556
```ts
H
huweiqi 已提交
1557 1558
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1559
async function example() {
H
huweiqi 已提交
1560
  console.info('fetchResultCloseDemo');
Z
zhang-daiyue 已提交
1561 1562 1563 1564 1565
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
H
huweiqi 已提交
1566 1567 1568 1569 1570 1571 1572
  try {
    let fetchResult = await mgr.getPhotoAssets(fetchOption);
    await fetchResult.close();
    console.info('close succeed.');
  } catch (err) {
    console.info('close fail. message = ' + err);
  }
Y
yangbo 已提交
1573 1574 1575 1576 1577
}
```

### getFirstObject

Z
zhang-daiyue 已提交
1578
getFirstObject(callback: AsyncCallback&lt;T&gt;): void
Y
yangbo 已提交
1579

Z
zhang-daiyue 已提交
1580
获取文件检索结果中的第一个文件资产。此方法使用callback形式返回结果。
Y
yangbo 已提交
1581 1582 1583 1584 1585 1586 1587

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

| 参数名   | 类型                                          | 必填 | 说明                                        |
| -------- | --------------------------------------------- | ---- | ------------------------------------------- |
Z
zhang-daiyue 已提交
1588
| callback | AsyncCallback&lt;T&gt; | 是   | 异步获取结果集中的第一个完成后的回调 |
Y
yangbo 已提交
1589 1590 1591

**示例**

Z
zhang-daiyue 已提交
1592
```ts
H
huweiqi 已提交
1593 1594
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1595
async function example() {
H
huweiqi 已提交
1596
  console.info('getFirstObjectDemo');
Z
zhang-daiyue 已提交
1597 1598 1599 1600 1601 1602 1603 1604
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  fetchResult.getFirstObject((err, fileAsset) => {
    if (fileAsset != undefined) {
H
huweiqi 已提交
1605
      console.info('fileAsset displayName: ', fileAsset.displayName);
Z
zhang-daiyue 已提交
1606 1607 1608 1609
    } else {
      console.info("fileAsset failed with err:" + err);
    }
  });
Y
yangbo 已提交
1610 1611 1612 1613 1614
}
```

### getFirstObject

Z
zhang-daiyue 已提交
1615
getFirstObject(): Promise&lt;T&gt;
Y
yangbo 已提交
1616

Z
zhang-daiyue 已提交
1617
获取文件检索结果中的第一个文件资产。此方法使用promise方式来异步返回。
Y
yangbo 已提交
1618 1619 1620 1621 1622 1623 1624

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**返回值**

| 类型                                    | 说明                       |
| --------------------------------------- | -------------------------- |
H
huweiqi 已提交
1625
| Promise&lt;T&gt; | Promise方式返回 |
Y
yangbo 已提交
1626 1627 1628

**示例**

Z
zhang-daiyue 已提交
1629
```ts
H
huweiqi 已提交
1630 1631
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1632
async function example() {
H
huweiqi 已提交
1633
  console.info('getFirstObjectDemo');
Z
zhang-daiyue 已提交
1634 1635 1636 1637 1638 1639 1640
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  let fileAsset = await fetchResult.getFirstObject();
H
huweiqi 已提交
1641
  console.info('fileAsset displayName: ', fileAsset.displayName);
Y
yangbo 已提交
1642 1643 1644 1645 1646
}
```

### getNextObject

Z
zhang-daiyue 已提交
1647
 getNextObject(callback: AsyncCallback&lt;T&gt;): void
Y
yangbo 已提交
1648 1649 1650 1651 1652 1653 1654 1655 1656

获取文件检索结果中的下一个文件资产。此方法使用callback形式返回结果。

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

| 参数名    | 类型                                          | 必填 | 说明                                      |
| --------- | --------------------------------------------- | ---- | ----------------------------------------- |
Z
zhang-daiyue 已提交
1657
| callbacke | AsyncCallback&lt;T&gt; | 是   | 异步返回结果集中下一个之后的回调 |
Y
yangbo 已提交
1658 1659 1660

**示例**

Z
zhang-daiyue 已提交
1661
```ts
H
huweiqi 已提交
1662 1663
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1664
async function example() {
H
huweiqi 已提交
1665
  console.info('getNextObjectDemo');
Z
zhang-daiyue 已提交
1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  await fetchResult.getFirstObject();
  if (fetchResult.isAfterLast()) {
    fetchResult.getNextObject((err, fileAsset) => {
      if (fileAsset != undefined) {
H
huweiqi 已提交
1676
        console.info('fileAsset displayName: ', fileAsset.displayName);
Z
zhang-daiyue 已提交
1677 1678 1679 1680 1681
      } else {
        console.info("fileAsset failed with err:" + err);
      }
    });
  }
Y
yangbo 已提交
1682 1683 1684 1685 1686
}
```

### getNextObject

Z
zhang-daiyue 已提交
1687
 getNextObject(): Promise&lt;T&gt;
Y
yangbo 已提交
1688

Z
zhang-daiyue 已提交
1689
获取文件检索结果中的下一个文件资产。此方法使用promise方式来异步返回。
Y
yangbo 已提交
1690 1691 1692 1693 1694 1695 1696

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**返回值**

| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
Z
zhang-daiyue 已提交
1697
| Promise&lt;T&gt; | 返回结果集中下一个对象 |
Y
yangbo 已提交
1698 1699 1700

**示例**

Z
zhang-daiyue 已提交
1701
```ts
H
huweiqi 已提交
1702 1703
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1704
async function example() {
H
huweiqi 已提交
1705
  console.info('getNextObjectDemo');
Z
zhang-daiyue 已提交
1706 1707 1708 1709 1710 1711 1712 1713 1714
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  await fetchResult.getFirstObject();
  if (fetchResult.isAfterLast()) {
    let fileAsset = await fetchResult.getNextObject();
H
huweiqi 已提交
1715
    console.info('fileAsset displayName: ', fileAsset.displayName);
Z
zhang-daiyue 已提交
1716
  }
Y
yangbo 已提交
1717 1718 1719 1720 1721
}
```

### getLastObject

Z
zhang-daiyue 已提交
1722
getLastObject(callback: AsyncCallback&lt;T&gt;): void
Y
yangbo 已提交
1723

Z
zhang-daiyue 已提交
1724
获取文件检索结果中的最后一个文件资产。此方法使用callback回调来返回。
Y
yangbo 已提交
1725 1726 1727 1728 1729 1730 1731

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

| 参数名   | 类型                                          | 必填 | 说明                        |
| -------- | --------------------------------------------- | ---- | --------------------------- |
Z
zhang-daiyue 已提交
1732
| callback | AsyncCallback&lt;T&gt; | 是   | 异步返回结果集中最后一个的回调 |
Y
yangbo 已提交
1733 1734 1735

**示例**

Z
zhang-daiyue 已提交
1736
```ts
H
huweiqi 已提交
1737 1738
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1739
async function example() {
H
huweiqi 已提交
1740
  console.info('getLastObjectDemo');
Z
zhang-daiyue 已提交
1741 1742 1743 1744 1745 1746 1747 1748
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  fetchResult.getLastObject((err, fileAsset) => {
    if (fileAsset != undefined) {
H
huweiqi 已提交
1749
      console.info('fileAsset displayName: ', fileAsset.displayName);
Z
zhang-daiyue 已提交
1750 1751 1752 1753
    } else {
      console.info("fileAsset failed with err:" + err);
    }
  });
Y
yangbo 已提交
1754 1755 1756 1757 1758
}
```

### getLastObject

Z
zhang-daiyue 已提交
1759
getLastObject(): Promise&lt;T&gt;
Y
yangbo 已提交
1760

Z
zhang-daiyue 已提交
1761
获取文件检索结果中的最后一个文件资产。此方法使用Promise方式来返回。
Y
yangbo 已提交
1762 1763 1764 1765 1766 1767 1768

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**返回值**

| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
Z
zhang-daiyue 已提交
1769
| Promise&lt;T&gt; | 返回结果集中最后一个对象 |
Y
yangbo 已提交
1770 1771 1772

**示例**

Z
zhang-daiyue 已提交
1773
```ts
H
huweiqi 已提交
1774 1775
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1776
async function example() {
H
huweiqi 已提交
1777
  console.info('getLastObjectDemo');
Z
zhang-daiyue 已提交
1778 1779 1780 1781 1782 1783 1784
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  let fileAsset = await fetchResult.getLastObject();
H
huweiqi 已提交
1785
  console.info('fileAsset displayName: ', fileAsset.displayName);
Y
yangbo 已提交
1786 1787 1788 1789 1790
}
```

### getPositionObject

Z
zhang-daiyue 已提交
1791
getPositionObject(index: number, callback: AsyncCallback&lt;T&gt;): void
Y
yangbo 已提交
1792

Z
zhang-daiyue 已提交
1793
获取文件检索结果中具有指定索引的文件资产。此方法使用callback来返回。
Y
yangbo 已提交
1794 1795 1796 1797 1798 1799 1800 1801

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

| 参数名       | 类型                                       | 必填   | 说明                 |
| -------- | ---------------------------------------- | ---- | ------------------ |
| index    | number                                   | 是    | 要获取的文件的索引,从0开始     |
Z
zhang-daiyue 已提交
1802
| callback | AsyncCallback&lt;T&gt; | 是    | 异步返回指定索引的文件资产的回调 |
Y
yangbo 已提交
1803 1804 1805

**示例**

Z
zhang-daiyue 已提交
1806
```ts
H
huweiqi 已提交
1807 1808
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1809
async function example() {
H
huweiqi 已提交
1810
  console.info('getPositionObjectDemo');
Z
zhang-daiyue 已提交
1811 1812 1813 1814 1815 1816 1817 1818
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  fetchResult.getPositionObject(0, (err, fileAsset) => {
    if (fileAsset != undefined) {
H
huweiqi 已提交
1819
      console.info('fileAsset displayName: ', fileAsset.displayName);
Z
zhang-daiyue 已提交
1820 1821 1822 1823
    } else {
      console.info("fileAsset failed with err:" + err);
    }
  });
Y
yangbo 已提交
1824 1825 1826 1827 1828
}
```

### getPositionObject

Z
zhang-daiyue 已提交
1829
getPositionObject(index: number): Promise&lt;T&gt;
Y
yangbo 已提交
1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844

获取文件检索结果中具有指定索引的文件资产。此方法使用Promise形式返回文件Asset。

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

| 参数名    | 类型     | 必填   | 说明             |
| ----- | ------ | ---- | -------------- |
| index | number | 是    | 要获取的文件的索引,从0开始 |

**返回值**

| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
Z
zhang-daiyue 已提交
1845
| Promise&lt;T&gt; | 返回指定索引的文件资产的对象 |
Y
yangbo 已提交
1846 1847 1848

**示例**

Z
zhang-daiyue 已提交
1849
```ts
H
huweiqi 已提交
1850 1851
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Y
yangbo 已提交
1852
async function example() {
H
huweiqi 已提交
1853
  console.info('getPositionObjectDemo');
Z
zhang-daiyue 已提交
1854 1855 1856 1857 1858 1859 1860
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  let fetchResult = await mgr.getPhotoAssets(fetchOption);
  let fileAsset = await fetchResult.getPositionObject(0);
H
huweiqi 已提交
1861
  console.info('fileAsset displayName: ', fileAsset.displayName);
Y
yangbo 已提交
1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880
}
```

## Album

实体相册

### 属性

**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core

| 名称           | 类型    | 可读   | 可写   | 说明      |
| ------------ | ------ | ---- | ---- | ------- |
| albumName | string | 是    | 是    | 相册名称    |
| albumUri | string | 是    | 否    | 相册Uri   |
| dateModified | number | 是    | 否    | 修改日期    |
| count | number | 是    | 否    | 相册中文件数量 |
| coverUri | string | 是    | 否    | 封面文件Uri 

Z
zhang-daiyue 已提交
1881 1882 1883 1884
### getPhotoAssets

getPhotoAssets(options: FetchOptions, callback: AsyncCallback&lt;FetchResult&lt;FileAsset&gt;&gt;): void;

H
huweiqi 已提交
1885
获取相册中的文件。该方法使用callback形式来返回文件。
Z
zhang-daiyue 已提交
1886

H
huweiqi 已提交
1887
**需要权限**:ohos.permission.READ_IMAGEVIDEO
Z
zhang-daiyue 已提交
1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| options | [FetchOptions](#fetchoptions) | 是   | 检索选项 |
| callback | AsyncCallback&lt;[FetchResult](#fetchresult)&lt;[FileAsset](#fileasset)&gt;&gt; | 是   | callback 返回图片和视频数据结果集|

**示例**

```ts
H
huweiqi 已提交
1901 1902
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
1903
async function example() {
H
huweiqi 已提交
1904
  console.info('albumGetFileAssetsDemoCallback');
Z
zhang-daiyue 已提交
1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928

  let predicates = new dataSharePredicates.DataSharePredicates();
  let albumFetchOptions = {
    predicates: predicates
  };
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  const albumList = await mgr.getPhotoAlbums(albumFetchOptions);
  const album = await albumList.getFirstObject();
  album.getPhotoAssets(fetchOption, (err, albumFetchResult) => {
    if (albumFetchResult != undefined) {
      console.info("album getPhotoAssets successfully, getCount:" + albumFetchResult.getCount());
    } else {
      console.info("album getPhotoAssets failed with error:" + err);
    }
  });
}
```
### getPhotoAssets

getPhotoAssets(options: FetchOptions): Promise&lt;FetchResult&lt;FileAsset&gt;&gt;;

H
huweiqi 已提交
1929
获取相册中的文件。该方法使用Promise来返回文件。
Z
zhang-daiyue 已提交
1930

H
huweiqi 已提交
1931
**需要权限**:ohos.permission.READ_IMAGEVIDEO
Z
zhang-daiyue 已提交
1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| options | [FetchOptions](#fetchoptions) | 是   | 检索选项 |
| Promise | [FetchResult](#fetchresult)&lt;[FileAsset](#fileasset)&gt; | 是   | 图片和视频数据结果集 |

**示例**

```ts
H
huweiqi 已提交
1945 1946
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
1947
async function example() {
H
huweiqi 已提交
1948
  console.info('albumGetFileAssetsDemoPromise');
Z
zhang-daiyue 已提交
1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967

  let predicates = new dataSharePredicates.DataSharePredicates();
  let albumFetchOptions = {
    predicates: predicates
  };
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  const albumList = await mgr.getPhotoAlbums(albumFetchOptions);
  const album = await albumList.getFirstObject();
  album.getPhotoAssets(fetchOption).then((albumFetchResult) => {
    console.info("album getFileAssets successfully, getCount:" + albumFetchResult.getCount());
  }).catch((err) => {
    console.info("album getFileAssets failed with error:" + err);
  });
}
```

Y
yangbo 已提交
1968 1969 1970 1971 1972 1973
### commitModify

commitModify(callback: AsyncCallback&lt;void&gt;): void;

更新相册属性修改到数据库中。

Z
zhang-daiyue 已提交
1974
**需要权限**:ohos.permission.WRITE_IMAGEVIDEO
Y
yangbo 已提交
1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |

**示例**

```ts
H
huweiqi 已提交
1987 1988
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
1989
async function example() {
H
huweiqi 已提交
1990
  console.info('albumCommitModifyDemo');
Z
zhang-daiyue 已提交
1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
  let predicates = new dataSharePredicates.DataSharePredicates();
  let albumFetchOptions = {
    predicates: predicates
  };
  const albumList = await mgr.getPhotoAlbums(albumFetchOptions);
  const album = await albumList.getFirstObject();
  album.albumName = 'hello';
  album.commitModify((err) => {
    if (err != undefined) {
      console.info("commitModify failed with error:" + err);
    } else {
      console.info("commitModify successfully");
    }
  });
Y
yangbo 已提交
2005 2006 2007 2008 2009 2010 2011 2012 2013
}
```

### commitModify

commitModify(): Promise&lt;void&gt;;

更新相册属性修改到数据库中。

Z
zhang-daiyue 已提交
2014
**需要权限**:ohos.permission.WRITE_IMAGEVIDEO
Y
yangbo 已提交
2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**返回值**

| 类型                  | 说明           |
| ------------------- | ------------ |
| Promise&lt;void&gt; | Promise调用返回空 |

**示例**

```ts
H
huweiqi 已提交
2027 2028
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
2029
async function example() {
H
huweiqi 已提交
2030
  console.info('albumCommitModifyDemo');
Z
zhang-daiyue 已提交
2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046
  let predicates = new dataSharePredicates.DataSharePredicates();
  let albumFetchOptions = {
    predicates: predicates
  };
  try {
    var albumList = await mgr.getPhotoAlbums(albumFetchOptions);
  } catch (err) {
    console.info('getPhotoAlbums failed. message = ', err);
  }
  const album = await albumList.getFirstObject();
  album.albumName = 'hello';
  album.commitModify().then(() => {
    console.info("commitModify successfully");
  }).catch((err) => {
    console.info("commitModify failed with error:" + err);
  });
Y
yangbo 已提交
2047 2048 2049
}
```

Z
zhang-daiyue 已提交
2050
## PrivateAlbum
H
huweiqi 已提交
2051 2052

系统相册。
Z
zhang-daiyue 已提交
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066

### 属性

**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core

| 名称           | 类型    | 可读   | 可写   | 说明      |
| ------------ | ------ | ---- | ---- | ------- |
| albumName | string | 是    | 是    | 相册名称    |
| albumUri | string | 是    | 否    | 相册Uri   |
| dateModified | number | 是    | 否    | 修改日期    |
| count | number | 是    | 否    | 相册中文件数量 |
| coverUri | string | 是    | 否    | 封面文件Uri 

### getPhotoAssets
Y
yangbo 已提交
2067

Z
zhang-daiyue 已提交
2068
getPhotoAssets(options: FetchOptions, callback: AsyncCallback&lt;FetchResult&lt;FileAsset&gt;&gt;): void;
Y
yangbo 已提交
2069

H
huweiqi 已提交
2070
获取系统相册中的文件。该方法使用callback形式来返回文件。
Y
yangbo 已提交
2071

H
huweiqi 已提交
2072
**需要权限**:ohos.permission.READ_IMAGEVIDEO
Y
yangbo 已提交
2073 2074 2075 2076 2077

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

Z
zhang-daiyue 已提交
2078 2079 2080 2081
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| options | [FetchOptions](#fetchoptions) | 是   | 检索选项 |
| callback | AsyncCallback&lt;[FetchResult](#fetchresult)&lt;[FileAsset](#fileasset)&gt;&gt; | 是   | callback返回图片和视频数据结果集 |
Y
yangbo 已提交
2082 2083 2084 2085

**示例**

```ts
H
huweiqi 已提交
2086 2087
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
2088
async function example() {
H
huweiqi 已提交
2089
  console.info('privateAlbumGetFileAssetsDemoCallback');
Z
zhang-daiyue 已提交
2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104
  let albumList = await mgr.getPrivateAlbum(userFileManager.PrivateAlbumType.TYPE_TRASH);
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  const trashAlbum = await albumList.getFirstObject();
  trashAlbum.getPhotoAssets(fetchOption, (err, fetchResult) => {
    if (fetchResult != undefined) {
      let count = fetchResult.getCount();
      console.info('fetchResult.count = ', count);
    } else {
      console.info('getFileAssets failed, message = ', err);
    }
  });
Y
yangbo 已提交
2105 2106
}

Z
zhang-daiyue 已提交
2107 2108
```
### getPhotoAssets
Y
yangbo 已提交
2109

Z
zhang-daiyue 已提交
2110
getPhotoAssets(options: FetchOptions): Promise&lt;FetchResult&lt;FileAsset&gt;&gt;;
Y
yangbo 已提交
2111

H
huweiqi 已提交
2112
获取系统相册中的文件。该方法使用Promise来返回文件。
Y
yangbo 已提交
2113

H
huweiqi 已提交
2114
**需要权限**:ohos.permission.READ_IMAGEVIDEO
Y
yangbo 已提交
2115 2116 2117 2118 2119

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

Z
zhang-daiyue 已提交
2120 2121 2122 2123 2124 2125 2126 2127 2128
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| options | [FetchOptions](#fetchoptions) | 是   | 检索选项 |

**返回值**

| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise:[FetchResult](#fetchresult)&lt;[FileAsset](#fileasset)&gt;| 图片和视频数据结果集 |
Y
yangbo 已提交
2129 2130 2131 2132

**示例**

```ts
H
huweiqi 已提交
2133 2134
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
2135
async function example() {
H
huweiqi 已提交
2136
  console.info('privateAlbumGetFileAssetsDemoPromise');
Z
zhang-daiyue 已提交
2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147
  let albumList = await mgr.getPrivateAlbum(userFileManager.PrivateAlbumType.TYPE_TRASH);
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  const trashAlbum = await albumList.getFirstObject();
  let fetchResult = await trashAlbum.getPhotoAssets(fetchOption);
  let count = fetchResult.getCount();
  console.info('fetchResult.count = ', count);
}
Y
yangbo 已提交
2148
```
Z
zhang-daiyue 已提交
2149 2150 2151
### delete

delete(uri: string, callback: AsyncCallback&lt;void&gt;): void;
Y
yangbo 已提交
2152

H
huweiqi 已提交
2153
删除系统相册中的文件。
Y
yangbo 已提交
2154

Z
zhang-daiyue 已提交
2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168
**需要权限**:ohos.permission.READ_IMAGEVIDEO 和 ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.READ_AUDIO 和 ohos.permission.WRITE_AUDIO

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| uri | string | 是   | 相册uri |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |

**示例**

```ts
H
huweiqi 已提交
2169 2170
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192
async function example() {
  console.info('privateAlbumDeleteCallback');
  let albumList = await mgr.getPrivateAlbum(userFileManager.PrivateAlbumType.TYPE_TRASH);
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  const trashAlbum = await albumList.getFirstObject();
  let fetchResult = await trashAlbum.getPhotoAssets(fetchOption);
  const fileAsset = await fetchResult.getFirstObject();
  let deleteFileUri = fileAsset.uri;
  trashAlbum.delete(deleteFileUri, (err) => {
    if (err != undefined) {
      console.info('trashAlbum.delete failed, message = ', err);
    } else {
      console.info('trashAlbum.delete successfully');
    }
  });
}
```
### delete
Y
yangbo 已提交
2193

Z
zhang-daiyue 已提交
2194
delete(uri: string): Promise&lt;void&gt;;
Y
yangbo 已提交
2195

H
huweiqi 已提交
2196
删除系统相册中的文件。
Y
yangbo 已提交
2197

Z
zhang-daiyue 已提交
2198
**需要权限**:ohos.permission.READ_IMAGEVIDEO 和 ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.READ_AUDIO 和 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
2199 2200 2201 2202 2203

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

Z
zhang-daiyue 已提交
2204 2205 2206
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| uri | string | 是   | 相册uri |
Y
yangbo 已提交
2207 2208 2209

**返回值**

Z
zhang-daiyue 已提交
2210 2211 2212
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;void&gt;| 回调返回空 |
Y
yangbo 已提交
2213 2214 2215 2216

**示例**

```ts
H
huweiqi 已提交
2217 2218
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
2219
async function example() {
H
huweiqi 已提交
2220
  console.info('privateAlbumDeleteDemoPromise');
Z
zhang-daiyue 已提交
2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236
  let albumList = await mgr.getPrivateAlbum(userFileManager.PrivateAlbumType.TYPE_TRASH);
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  const trashAlbum = await albumList.getFirstObject();
  let fetchResult = await trashAlbum.getPhotoAssets(fetchOption);
  const fileAsset = await fetchResult.getFirstObject();
  let deleteFileUri = fileAsset.uri;
  trashAlbum.delete(deleteFileUri).then(() => {
    console.info('trashAlbum.delete successfully');
  }).catch((err) => {
    console.info('trashAlbum.delete failed, message = ', err);
  });
}   
Y
yangbo 已提交
2237 2238
```

Z
zhang-daiyue 已提交
2239
### recover
Y
yangbo 已提交
2240

Z
zhang-daiyue 已提交
2241
recover(uri: string, callback: AsyncCallback&lt;void&gt;): void;
李云帆 已提交
2242

H
huweiqi 已提交
2243
恢复系统相册中的文件。
Y
yangbo 已提交
2244

H
huweiqi 已提交
2245
**需要权限**:ohos.permission.READ_IMAGEVIDEO 和 ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.READ_AUDIO 和 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
2246 2247 2248 2249

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**
Z
zhang-daiyue 已提交
2250 2251 2252 2253 2254

| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| uri | string | 是   | 相册uri |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |
Y
yangbo 已提交
2255 2256 2257 2258

**示例**

```ts
H
huweiqi 已提交
2259 2260
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277
async function example() {
  console.info('privateAlbumRecoverDemoCallback');
  let albumList = await mgr.getPrivateAlbum(userFileManager.PrivateAlbumType.TYPE_TRASH);
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  const trashAlbum = await albumList.getFirstObject();
  let fetchResult = await trashAlbum.getPhotoAssets(fetchOption);
  const fileAsset = await fetchResult.getFirstObject();
  let recoverFileUri = fileAsset.uri;
  trashAlbum.recover(recoverFileUri, (err) => {
    if (err != undefined) {
      console.info('trashAlbum.recover failed, message = ', err);
    } else {
      console.info('trashAlbum.recover successfully');
Y
yangbo 已提交
2278
    }
Z
zhang-daiyue 已提交
2279
  });
Y
yangbo 已提交
2280 2281
}
```
Z
zhang-daiyue 已提交
2282
### recover
Y
yangbo 已提交
2283

Z
zhang-daiyue 已提交
2284
recover(uri: string): Promise&lt;void&gt;;
Y
yangbo 已提交
2285

H
huweiqi 已提交
2286
恢复系统相册中的文件。
李云帆 已提交
2287

H
huweiqi 已提交
2288
**需要权限**:ohos.permission.READ_IMAGEVIDEO 和 ohos.permission.WRITE_IMAGEVIDEO 或 ohos.permission.READ_AUDIO 和 ohos.permission.WRITE_AUDIO
Y
yangbo 已提交
2289 2290 2291 2292 2293

**系统能力**:SystemCapability.FileManagement.UserFileManager.Core

**参数**

Z
zhang-daiyue 已提交
2294 2295 2296
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| uri | string | 是   | 相册uri |
Y
yangbo 已提交
2297 2298 2299

**返回值**

Z
zhang-daiyue 已提交
2300 2301 2302
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;void&gt;| 回调返回空 |
Y
yangbo 已提交
2303 2304 2305 2306

**示例**

```ts
H
huweiqi 已提交
2307 2308
import dataSharePredicates from '@ohos.data.dataSharePredicates';

Z
zhang-daiyue 已提交
2309
async function example() {
H
huweiqi 已提交
2310
  console.info('privateAlbumRecoverDemoPromise');
Z
zhang-daiyue 已提交
2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325
  let albumList = await mgr.getPrivateAlbum(userFileManager.PrivateAlbumType.TYPE_TRASH);
  let predicates = new dataSharePredicates.DataSharePredicates();
  let fetchOption = {
    fetchColumns: [],
    predicates: predicates
  };
  const trashAlbum = await albumList.getFirstObject();
  let fetchResult = await trashAlbum.getPhotoAssets(fetchOption);
  const fileAsset = await fetchResult.getFirstObject();
  let recoverFileUri = fileAsset.uri;
  trashAlbum.recover(recoverFileUri).then(() => {
    console.info('trashAlbum.recover successfully');
  }).catch((err) => {
    console.info('trashAlbum.recover failed, message = ', err);
  });
Y
yangbo 已提交
2326 2327 2328
}
```

Z
zhang-daiyue 已提交
2329 2330 2331 2332
## MemberType

成员类型。

H
huweiqi 已提交
2333
**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core
zyjhandsome's avatar
zyjhandsome 已提交
2334

H
huweiqi 已提交
2335 2336 2337 2338 2339
| 名称  |  类型 |  可读  |  可写  |  说明  |
| ----- |  ---- |  ---- |  ---- |  ---- |
| number |  number | 是 | 是 | number类型 | 
| string |  string | 是 | 是 | string类型 | 
| boolean |  boolean | 是 | 是 | boolean类型 | 
Z
zhang-daiyue 已提交
2340 2341 2342 2343 2344

## ChangeEvent

变更监听的媒体文件类型。

H
huweiqi 已提交
2345
**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core
Z
zhang-daiyue 已提交
2346

H
huweiqi 已提交
2347
| 名称  |  类型 |  可读  |  可写  |  说明 |
H
huweiqi 已提交
2348 2349 2350 2351 2352 2353 2354
| ----- |  ---- |  ---- |  ---- |  ---- |
| deviceChange |  string | 是 | 是 |  设备 |
| albumChange |  string | 是 | 是 |  相册 |
| imageChange |  string | 是 | 是 |  图片 |
| audioChange |  string | 是 | 是 |  音频 |
| videoChange |  string | 是 | 是 |  视频 |
| remoteFileChange |  string | 是 | 是 |  远程文件 |
Z
zhang-daiyue 已提交
2355

Y
yangbo 已提交
2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368
## PeerInfo

注册设备的信息。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.DistributedCore

| 名称       | 类型                       | 可读 | 可写 | 说明             |
| ---------- | -------------------------- | ---- | ---- | ---------------- |
| deviceName | string                     | 是   | 否   | 注册设备的名称   |
| networkId  | string                     | 是   | 否   | 注册设备的网络ID |
| isOnline   | boolean                    | 是   | 否   | 是否在线         |


Z
zhang-daiyue 已提交
2369 2370 2371
## FileType

枚举,媒体文件类型。
Y
yangbo 已提交
2372 2373 2374

**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core

H
huweiqi 已提交
2375 2376 2377 2378 2379
| 名称  |  值 |  说明 |
| ----- |  ---- |  ---- |
| IMAGE |  1 |  图片 |
| VIDEO |  2 |  视频 |
| AUDIO |  3 |  音频 |
Y
yangbo 已提交
2380

Z
zhang-daiyue 已提交
2381
## PrivateAlbumType
Y
yangbo 已提交
2382

Z
zhang-daiyue 已提交
2383
枚举,系统相册类型。
Y
yangbo 已提交
2384 2385 2386

**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core

H
huweiqi 已提交
2387 2388 2389 2390
| 名称    |  值 |   说明   |
| -----   |  ----  |   ----  |
| TYPE_FAVORITE |  0 |  收藏夹相册 |
| TYPE_TRASH |  1 |  回收站相册 |
Z
zhang-daiyue 已提交
2391 2392


Y
yangbo 已提交
2393 2394 2395 2396 2397 2398 2399

## AudioKey

枚举,音频文件关键信息。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core

H
huweiqi 已提交
2400
| 名称          |   值              | 说明                                                       |
Y
yangbo 已提交
2401 2402 2403 2404 2405 2406 2407 2408 2409
| ------------- | ------------------- | ---------------------------------------------------------- |
| URI           | uri                 | 文件uri                                                   |
| DISPLAY_NAME  | display_name        | 显示名字                                                   |
| DATE_ADDED    | date_added          | 添加日期(添加文件时间到1970年1月1日的秒数值)             |
| DATE_MODIFIED | date_modified       | 修改日期(修改文件时间到1970年1月1日的秒数值)             |
| TITLE         | title               | 文件标题                                                   |
| ARTIST        | artist              | 作者                                                   |
| AUDIOALBUM    | audio_album         | 专辑                                                   |
| DURATION      | duration            | 持续时间(单位:毫秒)                                    |
Z
zhang-daiyue 已提交
2410
| FAVORITE      | favorite            | 收藏                                                   |
Y
yangbo 已提交
2411 2412 2413 2414 2415 2416 2417

## ImageVideoKey

枚举,图片和视频文件关键信息。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core

H
huweiqi 已提交
2418
| 名称          | 值              | 说明                                                       |
Y
yangbo 已提交
2419 2420
| ------------- | ------------------- | ---------------------------------------------------------- |
| URI           | uri                 | 文件uri                                                   |
Z
zhang-daiyue 已提交
2421
| FILE_TYPE     | file_type           | 媒体文件类型                                              |
Y
yangbo 已提交
2422 2423 2424
| DISPLAY_NAME  | display_name        | 显示名字                                                   |
| DATE_ADDED    | date_added          | 添加日期(添加文件时间到1970年1月1日的秒数值)             |
| DATE_MODIFIED | date_modified       | 修改日期(修改文件时间到1970年1月1日的秒数值)             |
Z
zhang-daiyue 已提交
2425
| TITLE         | title               | 文件标题                                                   |
Y
yangbo 已提交
2426 2427 2428 2429
| DURATION      | duration            | 持续时间(单位:毫秒)                                    |
| WIDTH         | width               | 图片宽度(单位:像素)                                    |
| HEIGHT        | height              | 图片高度(单位:像素)                                      |
| DATE_TAKEN    | date_taken          | 拍摄日期(文件拍照时间到1970年1月1日的秒数值)                |
Z
zhang-daiyue 已提交
2430 2431
| ORIENTATION   | orientation         | 图片文件的方向                                             |
| FAVORITE      | favorite            | 收藏                                                    |
Y
yangbo 已提交
2432 2433 2434 2435 2436 2437 2438

## AlbumKey

枚举,相册关键信息。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core

H
huweiqi 已提交
2439
| 名称          | 值              | 说明                                                       |
Y
yangbo 已提交
2440 2441
| ------------- | ------------------- | ---------------------------------------------------------- |
| URI           | uri                 | 相册uri                                                   |
Z
zhang-daiyue 已提交
2442 2443
| FILE_TYPE     | file_type           | 媒体文件类型                                              |
| ALBUM_NAME    | album_name          | 相册名字                                                   |
Y
yangbo 已提交
2444 2445 2446 2447
| DATE_ADDED    | date_added          | 添加日期(添加文件时间到1970年1月1日的秒数值)             |
| DATE_MODIFIED | date_modified       | 修改日期(修改文件时间到1970年1月1日的秒数值)             |


Z
zhang-daiyue 已提交
2448
## FetchOptions
Y
yangbo 已提交
2449 2450 2451 2452 2453

检索条件。

**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core

H
huweiqi 已提交
2454 2455 2456 2457
| 名称                   | 类型                | 可读 | 可写 | 说明                                              |
| ---------------------- | ------------------- | ---- |---- | ------------------------------------------------ |
| fetchColumns           | Array&lt;string&gt; | 是   | 是   | 检索条件,指定列名查询,如果该参数为空时默认查询uri、name、fileType。示例:<br />fetchColumns: "uri"|
| predicates           | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md) | 是   | 是   | 谓词查询,显示过滤条件 |
Y
yangbo 已提交
2458

Z
zhang-daiyue 已提交
2459
## AlbumFetchOptions
Y
yangbo 已提交
2460

Z
zhang-daiyue 已提交
2461
相册检索条件。
李云帆 已提交
2462

Y
yangbo 已提交
2463 2464
**系统能力:** 以下各项对应的系统能力均为SystemCapability.FileManagement.UserFileManager.Core

H
huweiqi 已提交
2465 2466 2467
| 名称                   | 类型                | 可读 | 可写 | 说明                                              |
| ---------------------- | ------------------- | ---- |---- | ------------------------------------------------ |
| predicates           | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md) | 是   | 是   | 谓词查询,显示过滤条件 |
Y
yangbo 已提交
2468