js-apis-medialibrary.md 89.7 KB
Newer Older
Z
zengyawen 已提交
1 2
# 媒体库管理

P
panqiangbiao 已提交
3 4
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 该组件从API Version 6开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
P
panqiangbiao 已提交
5

Z
zengyawen 已提交
6
## 导入模块
7
```js
8
import mediaLibrary from '@ohos.multimedia.mediaLibrary';
P
panqiangbiao 已提交
9 10
```

Z
zengyawen 已提交
11
## mediaLibrary.getMediaLibrary<sup>8+</sup>
P
panqiangbiao 已提交
12

P
panqiangbiao 已提交
13
getMediaLibrary(context: Context): MediaLibrary
P
panqiangbiao 已提交
14

Z
zengyawen 已提交
15
获取媒体库的实例,用于访问和修改用户等个人媒体数据信息(如音频、视频、图片、文档等)。
P
panqiangbiao 已提交
16

W
wangqinxiao 已提交
17 18
此接口仅可在Stage模型下使用。

P
panqiangbiao 已提交
19
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
20

P
panqiangbiao 已提交
21
**参数:** 
P
panqiangbiao 已提交
22

Z
zengyawen 已提交
23 24 25
| 参数名  | 类型    | 必填 | 说明                       |
| ------- | ------- | ---- | -------------------------- |
| context | Context | 是   | 传入Ability实例的Context。 |
P
panqiangbiao 已提交
26 27 28

**返回值:**

H
HelloCrease 已提交
29 30
| 类型                            | 说明    |
| ----------------------------- | :---- |
P
panqiangbiao 已提交
31
| [MediaLibrary](#medialibrary) | 媒体库实例 |
P
panqiangbiao 已提交
32

潘强标 已提交
33 34
**示例:(从API Version 9开始)**

35
```ts
36 37
const context = getContext(this);
let media = mediaLibrary.getMediaLibrary(context);
潘强标 已提交
38 39 40
```

**示例:(API Version 8)**
P
panqiangbiao 已提交
41

42
```js
P
panqiangbiao 已提交
43
import featureAbility from '@ohos.ability.featureAbility';
P
panqiangbiao 已提交
44

45 46
let context = featureAbility.getContext()
let media = mediaLibrary.getMediaLibrary(context);
P
panqiangbiao 已提交
47
```
Z
zengyawen 已提交
48 49 50 51 52 53
## mediaLibrary.getMediaLibrary

getMediaLibrary(): MediaLibrary

获取媒体库的实例,用于访问和修改用户等个人媒体数据信息(如音频、视频、图片、文档等)。

W
wangqinxiao 已提交
54 55
此接口仅可在FA模型下使用。

Z
zengyawen 已提交
56
> **说明**: 从API Version 8开始,该接口不再维护,推荐使用新接口[mediaLibrary.getMediaLibrary<sup>8+</sup>](#medialibrarygetmedialibrary8)。
Z
zengyawen 已提交
57 58 59 60 61 62 63 64 65 66 67 68

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**返回值:**

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

**示例:**

```js
69
let media = mediaLibrary.getMediaLibrary();
Z
zengyawen 已提交
70 71
```

P
panqiangbiao 已提交
72
## MediaLibrary
P
panqiangbiao 已提交
73

Z
zengyawen 已提交
74
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
75 76


P
panqiangbiao 已提交
77
getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void 
P
panqiangbiao 已提交
78 79 80

获取文件资源,使用callback方式返回异步结果。

P
panqiangbiao 已提交
81
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
82

P
panqiangbiao 已提交
83
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
84

P
panqiangbiao 已提交
85 86
**参数:**

Z
zengyawen 已提交
87 88 89 90
| 参数名   | 类型                                                | 必填 | 说明                              |
| -------- | --------------------------------------------------- | ---- | --------------------------------- |
| options  | [MediaFetchOptions](#mediafetchoptions7)            | 是   | 文件获取选项                      |
| callback | AsyncCallback<[FetchFileResult](#fetchfileresult7)> | 是   | 异步获取FetchFileResult之后的回调 |
P
panqiangbiao 已提交
91 92 93

**示例:**

94
```js
P
panqiangbiao 已提交
95 96 97 98 99 100
let fileKeyObj = mediaLibrary.FileKey
let imageType = mediaLibrary.MediaType.IMAGE
let imagesfetchOp = {
    selections: fileKeyObj.MEDIA_TYPE + '= ?',
    selectionArgs: [imageType.toString()],
};
潘强标 已提交
101
media.getFileAssets(imagesfetchOp, (error, fetchFileResult) => {
P
panqiangbiao 已提交
102
    if (fetchFileResult != undefined) {
P
panqiangbiao 已提交
103
        console.info('mediaLibraryTest : ASSET_CALLBACK fetchFileResult success');
P
panqiangbiao 已提交
104 105
        fetchFileResult.getAllObject((err, fileAssetList) => {
            if (fileAssetList != undefined) {
Z
zhang-daiyue 已提交
106 107 108
                fileAssetList.forEach(function(getAllObjectInfo){
                    console.info("getAllObjectInfo.displayName :" + getAllObjectInfo.displayName);
                });
P
panqiangbiao 已提交
109
            }
P
panqiangbiao 已提交
110 111
    	});
    }
P
panqiangbiao 已提交
112
});
P
panqiangbiao 已提交
113
```
Z
zengyawen 已提交
114
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
115

P
panqiangbiao 已提交
116
getFileAssets(options: MediaFetchOptions): Promise&lt;FetchFileResult&gt;
P
panqiangbiao 已提交
117 118 119

获取文件资源,使用Promise方式返回结果。

P
panqiangbiao 已提交
120
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
121

P
panqiangbiao 已提交
122
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
123

P
panqiangbiao 已提交
124 125
**参数:**

Z
zengyawen 已提交
126 127 128
| 参数名  | 类型                                     | 必填 | 说明         |
| ------- | ---------------------------------------- | ---- | ------------ |
| options | [MediaFetchOptions](#mediafetchoptions7) | 是   | 文件检索选项 |
P
panqiangbiao 已提交
129 130 131

**返回值**

Z
zengyawen 已提交
132 133 134
| 类型                                 | 说明           |
| ------------------------------------ | -------------- |
| [FetchFileResult](#fetchfileresult7) | 文件数据结果集 |
P
panqiangbiao 已提交
135 136 137

**示例:**

138
```js
P
panqiangbiao 已提交
139 140 141 142 143 144
let fileKeyObj = mediaLibrary.FileKey
let imageType = mediaLibrary.MediaType.IMAGE
let imagesfetchOp = {
    selections: fileKeyObj.MEDIA_TYPE + '= ?',
    selectionArgs: [imageType.toString()],
};
潘强标 已提交
145
media.getFileAssets(imagesfetchOp).then(function(fetchFileResult){
Z
zhang-daiyue 已提交
146
    console.info("getFileAssets successfully: image number is "+ fetchFileResult.getCount());
P
panqiangbiao 已提交
147 148 149
}).catch(function(err){
    console.info("getFileAssets failed with error:"+ err);
});
P
panqiangbiao 已提交
150 151
```

P
panqiangbiao 已提交
152
### on<sup>8+</sup>
P
panqiangbiao 已提交
153

P
panqiangbiao 已提交
154
on(type: 'deviceChange'|'albumChange'|'imageChange'|'audioChange'|'videoChange'|'fileChange'|'remoteFileChange', callback: Callback&lt;void&gt;): void
P
panqiangbiao 已提交
155

156
打开媒体库变更通知,使用callback方式返回异步结果。
P
panqiangbiao 已提交
157

P
panqiangbiao 已提交
158
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
159

P
panqiangbiao 已提交
160 161
**参数:**

H
HelloCrease 已提交
162 163 164 165
| 参数名      | 类型                   | 必填   | 说明                                       |
| -------- | -------------------- | ---- | ---------------------------------------- |
| type     | string               | 是    | 媒体类型 <br/>'deviceChange':&nbsp;注册设备变更 <br/>'albumChange':&nbsp;相册变更<br/>'imageChange':&nbsp;图片文件变更<br/>'audioChange': &nbsp;音频文件变更<br/>'videoChange':  &nbsp;视频文件变更<br/>'fileChange':     &nbsp;文件变更<br/>'remoteFileChange':&nbsp;注册设备上文件变更 |
| callback | callback&lt;void&gt; | 是    | 回调返回空                                    |
P
panqiangbiao 已提交
166 167 168

**示例:**

169
```js
Z
zhang-daiyue 已提交
170
media.on('imageChange', () => {
P
panqiangbiao 已提交
171
    // image file had changed, do something
P
panqiangbiao 已提交
172 173
})
```
P
panqiangbiao 已提交
174
### off<sup>8+</sup>
P
panqiangbiao 已提交
175

P
panqiangbiao 已提交
176
off(type: 'deviceChange'|'albumChange'|'imageChange'|'audioChange'|'videoChange'|'fileChange'|'remoteFileChange', callback?: Callback&lt;void&gt;): void
P
panqiangbiao 已提交
177

178
关闭媒体库变更通知,使用callback方式返回异步结果。
P
panqiangbiao 已提交
179

P
panqiangbiao 已提交
180
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
181

P
panqiangbiao 已提交
182 183
**参数:**

H
HelloCrease 已提交
184 185 186 187
| 参数名      | 类型                   | 必填   | 说明                                       |
| -------- | -------------------- | ---- | ---------------------------------------- |
| type     | string               | 是    | 媒体类型 <br/>'deviceChange':&nbsp;注册设备变更 <br/>'albumChange':&nbsp;相册变更<br/>'imageChange':&nbsp;图片文件变更<br/>'audioChange': &nbsp;音频文件变更<br/>'videoChange':  &nbsp;视频文件变更<br/>'fileChange':     &nbsp;文件变更<br/>'remoteFileChange':&nbsp;注册设备上文件变更 |
| callback | callback&lt;void&gt; | 否    | 回调返回空                                    |
P
panqiangbiao 已提交
188 189 190

**示例:**

191
```js
潘强标 已提交
192
media.off('imageChange', () => {
P
panqiangbiao 已提交
193
    // stop listening success
P
panqiangbiao 已提交
194 195 196
})
```

B
bmeangel 已提交
197
### createAsset<sup>8+</sup>
P
panqiangbiao 已提交
198

P
panqiangbiao 已提交
199
createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
200 201 202

创建媒体资源,使用callback方式返回结果。

P
panqiangbiao 已提交
203
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
204

P
panqiangbiao 已提交
205
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
206

P
panqiangbiao 已提交
207 208
**参数:**

Z
zengyawen 已提交
209 210 211 212 213 214
| 参数名       | 类型                                    | 必填 | 说明                                                         |
| ------------ | --------------------------------------- | ---- | ------------------------------------------------------------ |
| mediaType    | [MediaType](#mediatype8)                | 是   | 媒体类型                                                     |
| displayName  | string                                  | 是   | 展示文件名                                                   |
| relativePath | string                                  | 是   | 文件保存路径,可以通过[getPublicDirectory](#getpublicdirectory8)获取不同类型文件的保存路径 |
| callback     | AsyncCallback<[FileAsset](#fileasset7)> | 是   | 异步获取媒体数据FileAsset之后的回调                          |
P
panqiangbiao 已提交
215 216 217

**示例:**

218
```js
P
panqiangbiao 已提交
219 220 221 222 223
async function example() {
    // 使用Callback方式创建Image类型文件
    let mediaType = mediaLibrary.MediaType.IMAGE;
    let DIR_IMAGE = mediaLibrary.DirectoryType.DIR_IMAGE;
    const path = await media.getPublicDirectory(DIR_IMAGE);
潘强标 已提交
224
    media.createAsset(mediaType, 'imageCallBack.jpg', path + 'myPicture/', (err, fileAsset) => {
P
panqiangbiao 已提交
225 226 227 228 229 230 231
        if (fileAsset != undefined) {
            console.info('createAsset successfully, message = ' + err);
        } else {
            console.info('createAsset failed, message = ' + err);
        }
    });
}
P
panqiangbiao 已提交
232 233
```

P
panqiangbiao 已提交
234
### createAsset<sup>8+</sup>
P
panqiangbiao 已提交
235

P
panqiangbiao 已提交
236
createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
237 238 239

创建媒体资源,使用Promise方式返回结果。

P
panqiangbiao 已提交
240
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
241

P
panqiangbiao 已提交
242
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
243

P
panqiangbiao 已提交
244 245
**参数:**

Z
zengyawen 已提交
246 247 248 249 250
| 参数名       | 类型                     | 必填 | 说明                                                         |
| ------------ | ------------------------ | ---- | ------------------------------------------------------------ |
| mediaType    | [MediaType](#mediatype8) | 是   | 媒体类型                                                     |
| displayName  | string                   | 是   | 展示文件名                                                   |
| relativePath | string                   | 是   | 相对路径,可以通过getPublicDirectory获取不同类型媒体文件的一层目录的relative path |
P
panqiangbiao 已提交
251 252 253

**返回值**

Z
zengyawen 已提交
254 255 256
| 类型                     | 说明              |
| ------------------------ | ----------------- |
| [FileAsset](#fileasset7) | 媒体数据FileAsset |
P
panqiangbiao 已提交
257 258 259

**示例:**

260
```js
261 262 263 264 265 266
let DIR_CAMERA = mediaLibrary.DirectoryType.DIR_CAMERA;
media.getPublicDirectory(DIR_CAMERA).then(function(dicResult){
    console.info("getPublicDirectory successfully:"+ JSON.stringify(dicResult));
}).catch(function(err){
    console.info("getPublicDirectory failed with error:"+ err);
});
P
panqiangbiao 已提交
267 268
```

Z
zengyawen 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
### deleteAsset<sup>8+</sup>

deleteAsset(uri: string): Promise\<void>

删除媒体文件资源

**系统接口**:此接口为系统接口。

**需要权限**:ohos.permission.READ_MEDIA and ohos.permission.WRITE_MEDIA

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

| 参数名      | 类型                           | 必填   | 说明              |
| -------- | ---------------------------- | ---- | --------------- |
| uri | string | 是    | 需要删除的媒体文件资源的uri |

**返回值:**
| 类型                  | 说明                   |
| ------------------- | -------------------- |
| Promise&lt;void&gt; | Promise回调返回删除的结果。 |

**示例:**

```js
async function example() {
    let fileKeyObj = mediaLibrary.FileKey
    let fileType = mediaLibrary.MediaType.FILE
    let option = {
        selections: fileKeyObj.MEDIA_TYPE + '= ?',
        selectionArgs: [fileType.toString()],
    };
    const context = getContext(this);
    var media = mediaLibrary.getMediaLibrary(context);
    const fetchFileResult = await media.getFileAssets(option);
    let asset = await fetchFileResult.getFirstObject();
    if (asset == undefined) {
        console.error('asset not exist')
        return
    }
    media.deleteAsset(asset.uri).then(() => {
        console.info("deleteAsset successfully");
    }).catch((err) => {
        console.info("deleteAsset failed with error:"+ err);
    });
}
```

### deleteAsset<sup>8+</sup>
deleteAsset(uri: string, callback: AsyncCallback\<void>): void

删除媒体文件资源

**系统接口**:此接口为系统接口。

**需要权限**:ohos.permission.READ_MEDIA and ohos.permission.WRITE_MEDIA

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

| 参数名      | 类型                           | 必填   | 说明              |
| -------- | ---------------------------- | ---- | --------------- |
| uri | string | 是    | 需要删除的媒体文件资源的uri。 |
|callback |AsyncCallback\<void>| 是  |回调函数,用于获取删除的结果。|

**示例:**

```js
async function example() {
    let fileKeyObj = mediaLibrary.FileKey
    let fileType = mediaLibrary.MediaType.FILE
    let option = {
        selections: fileKeyObj.MEDIA_TYPE + '= ?',
        selectionArgs: [fileType.toString()],
    };
    const context = getContext(this);
    var media = mediaLibrary.getMediaLibrary(context);
    const fetchFileResult = await media.getFileAssets(option);
    let asset = await fetchFileResult.getFirstObject();
    if (asset == undefined) {
        console.error('asset not exist')
        return
    }
    media.deleteAsset(asset.uri, (err) => {
        if (err != undefined) {
            console.info("deleteAsset successfully");
        } else {
            console.info("deleteAsset failed with error:"+ err);
        }
    });
}
```

P
panqiangbiao 已提交
364
### getPublicDirectory<sup>8+</sup>
P
panqiangbiao 已提交
365

P
panqiangbiao 已提交
366
getPublicDirectory(type: DirectoryType, callback: AsyncCallback&lt;string&gt;): void
P
panqiangbiao 已提交
367

P
panqiangbiao 已提交
368
获取公共目录路径,使用callback方式返回结果。
P
panqiangbiao 已提交
369 370 371 372 373

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

Z
zengyawen 已提交
374 375 376 377
| 参数名   | 类型                             | 必填 | 说明                      |
| -------- | -------------------------------- | ---- | ------------------------- |
| type     | [DirectoryType](#directorytype8) | 是   | 公共目录类型              |
| callback | AsyncCallback&lt;string&gt;      | 是   | callback 返回公共目录路径 |
P
panqiangbiao 已提交
378 379 380

**示例:**

381
```js
P
panqiangbiao 已提交
382
let DIR_CAMERA = mediaLibrary.DirectoryType.DIR_CAMERA;
P
panqiangbiao 已提交
383
media.getPublicDirectory(DIR_CAMERA, (err, dicResult) => {
P
panqiangbiao 已提交
384
    if (dicResult == 'Camera/') {
P
panqiangbiao 已提交
385
        console.info('mediaLibraryTest : getPublicDirectory passed');
P
panqiangbiao 已提交
386
    } else {
P
panqiangbiao 已提交
387
        console.info('mediaLibraryTest : getPublicDirectory failed');
P
panqiangbiao 已提交
388 389 390 391
    }
});
```

P
panqiangbiao 已提交
392
### getPublicDirectory<sup>8+</sup>
P
panqiangbiao 已提交
393

P
panqiangbiao 已提交
394
getPublicDirectory(type: DirectoryType): Promise&lt;string&gt;
P
panqiangbiao 已提交
395

P
panqiangbiao 已提交
396
获取公共目录路径,使用Promise方式返回结果。
P
panqiangbiao 已提交
397 398 399 400 401

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

Z
zengyawen 已提交
402 403 404
| 参数名 | 类型                             | 必填 | 说明         |
| ------ | -------------------------------- | ---- | ------------ |
| type   | [DirectoryType](#directorytype8) | 是   | 公共目录类型 |
P
panqiangbiao 已提交
405 406 407

**返回值:**

Z
zengyawen 已提交
408 409 410
| 类型             | 说明             |
| ---------------- | ---------------- |
| Promise\<string> | 返回公共目录路径 |
P
panqiangbiao 已提交
411 412 413

**示例:**

414
```js
P
panqiangbiao 已提交
415
async function example() {
P
panqiangbiao 已提交
416 417
    let DIR_CAMERA = mediaLibrary.DirectoryType.DIR_CAMERA;
    const dicResult = await media.getPublicDirectory(DIR_CAMERA);
P
panqiangbiao 已提交
418
    if (dicResult == 'Camera/') {
P
panqiangbiao 已提交
419 420 421 422
        console.info('MediaLibraryTest : getPublicDirectory');
    } else {
        console.info('MediaLibraryTest : getPublicDirectory failed');
    }
P
panqiangbiao 已提交
423 424 425
}
```

Z
zengyawen 已提交
426
### getAlbums<sup>7+</sup>
P
panqiangbiao 已提交
427

P
panqiangbiao 已提交
428
getAlbums(options: MediaFetchOptions, callback: AsyncCallback<Array&lt;Album&gt;>): void
P
panqiangbiao 已提交
429

P
panqiangbiao 已提交
430
获取相册列表,使用callback 方式返回结果。
P
panqiangbiao 已提交
431

P
panqiangbiao 已提交
432
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
433

P
panqiangbiao 已提交
434
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
435

P
panqiangbiao 已提交
436 437
**参数**

Z
zengyawen 已提交
438 439 440 441
| 参数名   | 类型                                         | 必填 | 说明                        |
| -------- | -------------------------------------------- | ---- | --------------------------- |
| options  | [MediaFetchOptions](#mediafetchoptions7)     | 是   | 相册获取条件                |
| callback | AsyncCallback&lt;Array<[Album](#album7)>&gt; | 是   | 异步获取Album列表之后的回调 |
P
panqiangbiao 已提交
442 443 444

**示例:**

445
```js
P
panqiangbiao 已提交
446 447 448 449
let AlbumNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
};
潘强标 已提交
450
media.getAlbums(AlbumNoArgsfetchOp, (err, albumList) => {
P
panqiangbiao 已提交
451 452 453 454 455 456 457
    if (albumList != undefined) {
        const album = albumList[0];
        console.info('album.albumName = ' + album.albumName);
        console.info('album.count = ' + album.count);
     } else {
        console.info('getAlbum fail, message = ' + err);
     }
P
panqiangbiao 已提交
458
})
P
panqiangbiao 已提交
459 460
```

Z
zengyawen 已提交
461
### getAlbums<sup>7+</sup>
P
panqiangbiao 已提交
462

P
panqiangbiao 已提交
463
getAlbums(options: MediaFetchOptions): Promise<Array&lt;Album&gt;>
P
panqiangbiao 已提交
464

P
panqiangbiao 已提交
465
获取相册列表,使用 promise 方式返回结果。
P
panqiangbiao 已提交
466

P
panqiangbiao 已提交
467
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
468

P
panqiangbiao 已提交
469
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
470

P
panqiangbiao 已提交
471 472
**参数:**

Z
zengyawen 已提交
473 474 475
| 参数名  | 类型                                     | 必填 | 说明         |
| ------- | ---------------------------------------- | ---- | ------------ |
| options | [MediaFetchOptions](#mediafetchoptions7) | 是   | 相册获取条件 |
P
panqiangbiao 已提交
476 477 478

**返回值:**

Z
zengyawen 已提交
479 480 481
| 类型                             | 说明          |
| -------------------------------- | ------------- |
| Promise<Array<[Album](#album7)>> | 返回Album列表 |
P
panqiangbiao 已提交
482 483 484

**示例:**

485
```js
P
panqiangbiao 已提交
486 487 488 489
let AlbumNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
};
潘强标 已提交
490
media.getAlbums(AlbumNoArgsfetchOp).then(function(albumList){
P
panqiangbiao 已提交
491 492 493 494
    console.info("getAlbums successfully:"+ JSON.stringify(albumList));
}).catch(function(err){
    console.info("getAlbums failed with error:"+ err);
});
P
panqiangbiao 已提交
495 496
```

P
panqiangbiao 已提交
497
### release<sup>8+</sup>
P
panqiangbiao 已提交
498

P
panqiangbiao 已提交
499
release(callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
500

P
panqiangbiao 已提交
501 502
释放MediaLibrary实例。
当后续不需要使用MediaLibrary实例中的方法时调用。
P
panqiangbiao 已提交
503

P
panqiangbiao 已提交
504
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
505

P
panqiangbiao 已提交
506 507
**参数:**

H
HelloCrease 已提交
508 509 510
| 参数名      | 类型                        | 必填   | 说明         |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调表示成功还是失败 |
P
panqiangbiao 已提交
511 512 513

**示例:**

514
```js
P
panqiangbiao 已提交
515
var media = mediaLibrary.getMediaLibrary(context);
P
panqiangbiao 已提交
516
media.release((err) => {
P
panqiangbiao 已提交
517
    // do something
P
panqiangbiao 已提交
518
});
P
panqiangbiao 已提交
519 520
```

P
panqiangbiao 已提交
521
### release<sup>8+</sup>
P
panqiangbiao 已提交
522

P
panqiangbiao 已提交
523
release(): Promise&lt;void&gt;
P
panqiangbiao 已提交
524

P
panqiangbiao 已提交
525 526
释放MediaLibrary实例。
当后续不需要使用MediaLibrary实例中的方法时调用。
P
panqiangbiao 已提交
527

P
panqiangbiao 已提交
528
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
529

P
panqiangbiao 已提交
530 531
**返回值:**

H
HelloCrease 已提交
532 533
| 类型                  | 说明                   |
| ------------------- | -------------------- |
P
panqiangbiao 已提交
534
| Promise&lt;void&gt; | Promise实例,用于获取异步返回结果 |
P
panqiangbiao 已提交
535 536 537

**示例:**

538
```js
P
panqiangbiao 已提交
539
media.release()
P
panqiangbiao 已提交
540 541
```

Z
update  
zengyawen 已提交
542
### storeMediaAsset<sup>(deprecated)</sup>
P
panqiangbiao 已提交
543 544 545 546 547

storeMediaAsset(option: MediaAssetOption, callback: AsyncCallback&lt;string&gt;): void

保存媒体资源,以异步方法获取保存成功的URI,使用callback形式返回结果。

Z
update  
zengyawen 已提交
548
> **说明**: 从API Version 9开始废弃。
P
panqiangbiao 已提交
549 550 551 552 553

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

H
HelloCrease 已提交
554 555 556 557
| 参数名      | 类型                                    | 必填   | 说明                      |
| -------- | ------------------------------------- | ---- | ----------------------- |
| option   | [MediaAssetOption](#mediaassetoption) | 是    | 媒体资源选项。                 |
| callback | AsyncCallback&lt;string&gt;           | 是    | 媒体资源保存回调,返回保存成功后得到的URI。 |
P
panqiangbiao 已提交
558 559 560

**示例:**

561
```js
P
panqiangbiao 已提交
562
let option = {
潘强标 已提交
563 564 565
    src : "/data/storage/el2/base/haps/entry/image.png",
    mimeType : "image/*",
    relativePath : "Pictures/"
P
panqiangbiao 已提交
566 567 568 569 570 571 572 573 574
};
mediaLibrary.getMediaLibrary().storeMediaAsset(option, (err, value) => {
    if (err) {
        console.log("An error occurred when storing media resources.");
        return;
    }
    console.log("Media resources stored. ");
    // Obtain the URI that stores media resources.
});
575
```
P
panqiangbiao 已提交
576 577


Z
update  
zengyawen 已提交
578
### storeMediaAsset<sup>(deprecated)</sup>
P
panqiangbiao 已提交
579 580 581 582 583

storeMediaAsset(option: MediaAssetOption): Promise&lt;string&gt;

保存媒体资源,以异步方法获取保存成功的URI,使用Promise形式返回结果。

Z
update  
zengyawen 已提交
584
> **说明**: 从API Version 9开始废弃。
P
panqiangbiao 已提交
585 586 587 588 589

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

H
HelloCrease 已提交
590 591 592
| 参数名    | 类型                                    | 必填   | 说明      |
| ------ | ------------------------------------- | ---- | ------- |
| option | [MediaAssetOption](#mediaassetoption) | 是    | 媒体资源选项。 |
P
panqiangbiao 已提交
593 594 595

**返回值:**

H
HelloCrease 已提交
596 597
| 类型                    | 说明                           |
| --------------------- | ---------------------------- |
P
panqiangbiao 已提交
598 599 600 601
| Promise&lt;string&gt; | Promise实例,用于异步获取保存成功后得到的URI。 |

**示例:**

602
```js
P
panqiangbiao 已提交
603
let option = {
潘强标 已提交
604 605 606
    src : "/data/storage/el2/base/haps/entry/image.png",
    mimeType : "image/*",
    relativePath : "Pictures/"
P
panqiangbiao 已提交
607 608 609 610 611 612 613
};
mediaLibrary.getMediaLibrary().storeMediaAsset(option).then((value) => {
    console.log("Media resources stored.");
    // Obtain the URI that stores media resources.
}).catch((err) => {
    console.log("An error occurred when storing media resources.");
});
614
```
P
panqiangbiao 已提交
615 616


Z
update  
zengyawen 已提交
617
### startImagePreview<sup>(deprecated)</sup>
P
panqiangbiao 已提交
618 619 620 621 622

startImagePreview(images: Array&lt;string&gt;, index: number, callback: AsyncCallback&lt;void&gt;): void

启动图片预览界面并限定预览开始显示的图片。可以预览指定序号的单张本地图片(dataability://),也可以预览列表中的所有网络图片(https://)。使用callback方式进行异步回调。

623
> **说明**: <br/>从API Version 9开始废弃。建议使用[Image组件](../arkui-ts/ts-basic-components-image.md)替代。<br/>Image组件,可用于本地图片和网络图片的渲染展示。
P
panqiangbiao 已提交
624 625 626 627 628

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

H
HelloCrease 已提交
629 630 631 632 633
| 参数名      | 类型                        | 必填   | 说明                                       |
| -------- | ------------------------- | ---- | ---------------------------------------- |
| images   | Array&lt;string&gt;       | 是    | 预览的图片URI("https://","dataability://")列表。 |
| index    | number                    | 是    | 开始显示的图片序号。                               |
| callback | AsyncCallback&lt;void&gt; | 是    | 图片预览回调,失败时返回错误信息。                        |
P
panqiangbiao 已提交
634 635 636

**示例:**

637
```js
P
panqiangbiao 已提交
638
let images = [
潘强标 已提交
639 640
    "dataability:///media/xxxx/2",
    "dataability:///media/xxxx/3"
P
panqiangbiao 已提交
641
];
H
HelloCrease 已提交
642
/* 网络图片使用方式
P
panqiangbiao 已提交
643 644 645 646
let images = [
    "https://media.xxxx.com/image1.jpg",
    "https://media.xxxx.com/image2.jpg"
];
H
HelloCrease 已提交
647
*/
P
panqiangbiao 已提交
648 649 650 651 652 653 654 655
let index = 1;
mediaLibrary.getMediaLibrary().startImagePreview(images, index, (err) => {
    if (err) {
        console.log("An error occurred when previewing the images.");
        return;
    }
    console.log("Succeeded in previewing the images.");
});
656
```
P
panqiangbiao 已提交
657 658


Z
update  
zengyawen 已提交
659
### startImagePreview<sup>(deprecated)</sup>
P
panqiangbiao 已提交
660 661 662 663 664

startImagePreview(images: Array&lt;string&gt;, callback: AsyncCallback&lt;void&gt;): void

启动图片预览界面,可以预览列表中首张本地图片(dataability://),也可以预览列表中的所有网络图片(https://)。使用callback方式进行异步回调。

665
> **说明**: <br/>从API Version 9开始废弃。建议使用[Image组件](../arkui-ts/ts-basic-components-image.md)替代。<br/>Image组件,可用于本地图片和网络图片的渲染展示。
P
panqiangbiao 已提交
666 667 668 669 670

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

H
HelloCrease 已提交
671 672 673 674
| 参数名      | 类型                        | 必填   | 说明                                       |
| -------- | ------------------------- | ---- | ---------------------------------------- |
| images   | Array&lt;string&gt;       | 是    | 预览的图片URI("https://","dataability://")列表。 |
| callback | AsyncCallback&lt;void&gt; | 是    | 图片预览回调,失败时返回错误信息。                        |
P
panqiangbiao 已提交
675 676 677

**示例:**

678
```js
P
panqiangbiao 已提交
679
let images = [
潘强标 已提交
680 681
    "dataability:///media/xxxx/2",
    "dataability:///media/xxxx/3"
P
panqiangbiao 已提交
682
];
H
HelloCrease 已提交
683
/* 网络图片使用方式
P
panqiangbiao 已提交
684 685 686 687
let images = [
    "https://media.xxxx.com/image1.jpg",
    "https://media.xxxx.com/image2.jpg"
];
H
HelloCrease 已提交
688
*/
P
panqiangbiao 已提交
689 690 691 692 693 694 695
mediaLibrary.getMediaLibrary().startImagePreview(images, (err) => {
    if (err) {
        console.log("An error occurred when previewing the images.");
        return;
    }
    console.log("Succeeded in previewing the images.");
});
696
```
P
panqiangbiao 已提交
697 698


Z
update  
zengyawen 已提交
699
### startImagePreview<sup>(deprecated)</sup>
P
panqiangbiao 已提交
700 701 702 703 704

startImagePreview(images: Array&lt;string&gt;, index?: number): Promise&lt;void&gt;

启动图片预览界面并限定预览开始显示的图片。可以预览指定序号的单张本地图片(dataability://),也可以预览列表中的所有网络图片(https://)。使用Promise方式进行异步回调。

705
> **说明**: <br/>从API Version 9开始废弃。建议使用[Image组件](../arkui-ts/ts-basic-components-image.md)替代。<br/>Image组件,可用于本地图片和网络图片的渲染展示。
P
panqiangbiao 已提交
706 707 708 709 710

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

H
HelloCrease 已提交
711 712 713 714
| 参数名    | 类型                  | 必填   | 说明                                       |
| ------ | ------------------- | ---- | ---------------------------------------- |
| images | Array&lt;string&gt; | 是    | 预览的图片URI("https://","dataability://")列表。 |
| index  | number              | 否    | 开始显示的图片序号,不选择时默认为0。                      |
P
panqiangbiao 已提交
715 716 717

**返回值:**

H
HelloCrease 已提交
718 719
| 类型                  | 说明                              |
| ------------------- | ------------------------------- |
P
panqiangbiao 已提交
720 721 722 723
| Promise&lt;void&gt; | Promise实例,用于异步获取预览结果,失败时返回错误信息。 |

**示例:**

724
```js
P
panqiangbiao 已提交
725
let images = [
潘强标 已提交
726 727
    "dataability:///media/xxxx/2",
    "dataability:///media/xxxx/3"
P
panqiangbiao 已提交
728
];
H
HelloCrease 已提交
729
/* 网络图片使用方式
P
panqiangbiao 已提交
730 731 732 733
let images = [
    "https://media.xxxx.com/image1.jpg",
    "https://media.xxxx.com/image2.jpg"
];
H
HelloCrease 已提交
734
*/
P
panqiangbiao 已提交
735 736 737 738 739 740
let index = 1;
mediaLibrary.getMediaLibrary().startImagePreview(images, index).then(() => {
    console.log("Succeeded in previewing the images.");
}).catch((err) => {
    console.log("An error occurred when previewing the images.");
});
741
```
P
panqiangbiao 已提交
742 743


Z
update  
zengyawen 已提交
744
### startMediaSelect<sup>(deprecated)</sup>
P
panqiangbiao 已提交
745 746 747 748 749

startMediaSelect(option: MediaSelectOption, callback: AsyncCallback&lt;Array&lt;string&gt;&gt;): void

启动媒体选择界面,以异步方法获取选择的媒体URI列表,使用callback形式返回结果。

750
> **说明**: <br/>从API Version 9开始废弃。建议使用系统应用图库替代。图库是系统内置的可视资源访问应用,提供图片和视频的管理、浏览等功能,使用方法请参考[OpenHarmony/applications_photos](https://gitee.com/openharmony/applications_photos#4-%E5%85%B8%E5%9E%8B%E6%8E%A5%E5%8F%A3%E7%9A%84%E4%BD%BF%E7%94%A8)。
P
panqiangbiao 已提交
751 752 753 754 755

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

H
HelloCrease 已提交
756 757
| 参数名      | 类型                                       | 必填   | 说明                                   |
| -------- | ---------------------------------------- | ---- | ------------------------------------ |
Z
zengyawen 已提交
758
| option   | [MediaSelectOption](#mediaselectoptiondeprecated)  | 是    | 媒体选择选项。                              |
H
HelloCrease 已提交
759
| callback | AsyncCallback&lt;Array&lt;string&gt;&gt; | 是    | 媒体选择回调,返回选择的媒体URI(dataability://)列表。 |
P
panqiangbiao 已提交
760 761 762

**示例:**

763
```js
P
panqiangbiao 已提交
764
let option = {
Z
zhang-daiyue 已提交
765
    type : "media",
P
panqiangbiao 已提交
766 767 768 769 770 771 772 773 774 775
    count : 2
};
mediaLibrary.getMediaLibrary().startMediaSelect(option, (err, value) => {
    if (err) {
        console.log("An error occurred when selecting media resources.");
        return;
    }
    console.log("Media resources selected.");
    // Obtain the media selection value.
});
776
```
P
panqiangbiao 已提交
777 778


Z
update  
zengyawen 已提交
779
### startMediaSelect<sup>(deprecated)</sup>
P
panqiangbiao 已提交
780 781 782 783 784

startMediaSelect(option: MediaSelectOption): Promise&lt;Array&lt;string&gt;&gt;

启动媒体选择界面,以异步方法获取选择的媒体URI列表,使用Promise形式返回结果。

785
> **说明**: <br/>从API Version 9开始废弃。建议使用系统应用图库替代。图库是系统内置的可视资源访问应用,提供图片和视频的管理、浏览等功能,使用方法请参考[OpenHarmony/applications_photos](https://gitee.com/openharmony/applications_photos#4-%E5%85%B8%E5%9E%8B%E6%8E%A5%E5%8F%A3%E7%9A%84%E4%BD%BF%E7%94%A8)。
P
panqiangbiao 已提交
786 787 788 789 790

**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core

**参数:**

H
HelloCrease 已提交
791 792
| 参数名    | 类型                                      | 必填   | 说明      |
| ------ | --------------------------------------- | ---- | ------- |
Z
zengyawen 已提交
793
| option | [MediaSelectOption](#mediaselectoptiondeprecated) | 是    | 媒体选择选项。 |
P
panqiangbiao 已提交
794 795 796

**返回值:**

H
HelloCrease 已提交
797 798
| 类型                                 | 说明                                       |
| ---------------------------------- | ---------------------------------------- |
P
panqiangbiao 已提交
799 800 801 802
| Promise&lt;Array&lt;string&gt;&gt; | Promise实例,用于异步获取选择的媒体URI(dataability://)列表。 |

**示例:**

803
```js
P
panqiangbiao 已提交
804
let option = {
Z
zhang-daiyue 已提交
805
    type : "media",
P
panqiangbiao 已提交
806 807 808 809 810 811 812 813 814
    count : 2
};
mediaLibrary.getMediaLibrary().startMediaSelect(option).then((value) => {
    console.log("Media resources selected.");
    // Obtain the media selection value.
}).catch((err) => {
    console.log("An error occurred when selecting media resources.");
});

Z
zengyawen 已提交
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
```
### getActivePeers<sup>8+</sup>

getActivePeers(): Promise\<Array\<PeerInfo>>;

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

**系统接口**:此接口为系统接口。

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

**系统能力**:SystemCapability.Multimedia.MediaLibrary.DistributedCore

**返回值:**

| 类型                  | 说明                   |
| ------------------- | -------------------- |
|  Promise\<Array\<PeerInfo>> | 返回获取的所有在线对端设备的PeerInfo |

**示例:**

```js
async function example() {
    const context = getContext(this);
    var media = mediaLibrary.getMediaLibrary(context);
    media.getActivePeers().then((devicesInfo) => {
        if (devicesInfo != undefined) {
            for (let i = 0; i < devicesInfo.length; i++) {
            console.info('get distributed info ' + devicesInfo[i].deviceName + devicesInfo[i].networkId);
            }
        } else {
            console.info('get distributed info is undefined!')
        }
    }).catch((err) => {
        console.info("get distributed info failed with error:" + err);
    });
}
```

### getActivePeers<sup>8+</sup>
855

Z
zengyawen 已提交
856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929
getActivePeers(callback: AsyncCallback\<Array\<PeerInfo>>): void;

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

**系统接口**:此接口为系统接口。

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

**系统能力**:SystemCapability.Multimedia.MediaLibrary.DistributedCore

**返回值:**

| 类型                  | 说明                   |
| ------------------- | -------------------- |
| callback: AsyncCallback\<Array\<PeerInfo>> | 返回获取的所有在线对端设备的PeerInfo |

**示例:**

```js
async function example() {
    const context = getContext(this);
    var media = mediaLibrary.getMediaLibrary(context);
    media.getActivePeers((err, devicesInfo) => {
        if (devicesInfo != undefined) {
            for (let i = 0; i < devicesInfo.length; i++) {
                console.info('get distributed info ' + devicesInfo[i].deviceName + devicesInfo[i].networkId);
            }
        } else {
            console.info('get distributed fail, message = ' + err)
        }
    })
}
```


### getAllPeers<sup>8+</sup>

getAllPeers(): Promise\<Array\<PeerInfo>>;

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

**系统接口**:此接口为系统接口。

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

**系统能力**:SystemCapability.Multimedia.MediaLibrary.DistributedCore

**返回值:**

| 类型                  | 说明                   |
| ------------------- | -------------------- |
|  Promise\<Array\<PeerInfo>> | 返回获取的所有对端设备的PeerInfo |

**示例:**

```js
async function example() {
    const context = getContext(this);
    var media = mediaLibrary.getMediaLibrary(context);
    media.getAllPeers().then((devicesInfo) => {
        if (devicesInfo != undefined) {
            for (let i = 0; i < devicesInfo.length; i++) {
                console.info('get distributed info ' + devicesInfo[i].deviceName + devicesInfo[i].networkId);
            }
        } else {
            console.info('get distributed info is undefined!')
        }
    }).catch((err) => {
        console.info("get distributed info failed with error:" + err);
    });
}
```

### getAllPeers<sup>8+</sup>
930

Z
zengyawen 已提交
931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962
getAllPeers(callback: AsyncCallback\<Array\<PeerInfo>>): void;

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

**系统接口**:此接口为系统接口。

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

**系统能力**:SystemCapability.Multimedia.MediaLibrary.DistributedCore

**返回值:**

| 类型                  | 说明                   |
| ------------------- | -------------------- |
| callback: AsyncCallback\<Array\<PeerInfo>> | 返回获取的所有对端设备的PeerInfo |

**示例:**

```js
async function example() {
    const context = getContext(this);
    var media = mediaLibrary.getMediaLibrary(context);
    media.getAllPeers((err, devicesInfo) => {
        if (devicesInfo != undefined) {
            for (let i = 0; i < devicesInfo.length; i++) {
            console.info('get distributed info ' + devicesInfo[i].deviceName + devicesInfo[i].networkId);
            }
        } else {
            console.info('get distributed fail, message = ' + err)
        }
    })
}
963
```
P
panqiangbiao 已提交
964

Z
zengyawen 已提交
965
## FileAsset<sup>7+</sup>
P
panqiangbiao 已提交
966 967 968

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

Z
zengyawen 已提交
969 970 971
### 属性

**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
972

Z
zengyawen 已提交
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
| 名称                      | 类型                     | 可读 | 可写 | 说明                                                   |
| ------------------------- | ------------------------ | ---- | ---- | ------------------------------------------------------ |
| id                        | number                   | 是   | 否   | 文件资源编号                                           |
| uri                       | string                   | 是   | 否   | 文件资源uri(如:dataability:///media/image/2)         |
| mimeType                  | string                   | 是   | 否   | 文件扩展属性                                           |
| mediaType<sup>8+</sup>    | [MediaType](#mediatype8) | 是   | 否   | 媒体类型                                               |
| displayName               | string                   | 是   | 是   | 显示文件名,包含后缀名                                 |
| title                     | string                   | 是   | 是   | 文件标题                                               |
| relativePath<sup>8+</sup> | string                   | 是   | 是   | 相对公共目录路径                                       |
| parent<sup>8+</sup>       | number                   | 是   | 否   | 父目录id                                               |
| size                      | number                   | 是   | 否   | 文件大小(单位:字节)                                 |
| dateAdded                 | number                   | 是   | 否   | 添加日期(添加文件时间到1970年1月1日的秒数值)         |
| dateModified              | number                   | 是   | 否   | 修改日期(修改文件时间到1970年1月1日的秒数值)         |
| dateTaken                 | number                   | 是   | 否   | 拍摄日期(文件拍照时间到1970年1月1日的秒数值)         |
| artist<sup>8+</sup>       | string                   | 是   | 否   | 作者                                                   |
| audioAlbum<sup>8+</sup>   | string                   | 是   | 否   | 专辑                                                   |
| width                     | number                   | 是   | 否   | 图片宽度(单位:像素)                                 |
| height                    | number                   | 是   | 否   | 图片高度(单位:像素)                                 |
| orientation               | number                   | 是   | 是   | 图片显示方向(顺时针旋转角度,如0,90,180  单位:度) |
潘强标 已提交
992
| duration<sup>8+</sup>     | number                   | 是   | 否   | 持续时间(单位:毫秒)                                   |
Z
zengyawen 已提交
993 994 995
| albumId                   | number                   | 是   | 否   | 文件所归属的相册编号                                   |
| albumUri<sup>8+</sup>     | string                   | 是   | 否   | 文件所归属相册uri                                      |
| albumName                 | string                   | 是   | 否   | 文件所归属相册名称                                     |
P
panqiangbiao 已提交
996 997 998


### isDirectory<sup>8+</sup>
P
panqiangbiao 已提交
999

P
panqiangbiao 已提交
1000
isDirectory(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
1001 1002 1003

判断fileAsset是否为目录,使用callback方式返回异步结果。

P
panqiangbiao 已提交
1004
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1005

P
panqiangbiao 已提交
1006
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1007

P
panqiangbiao 已提交
1008 1009
**参数:**

H
HelloCrease 已提交
1010 1011 1012
| 参数名      | 类型                           | 必填   | 说明                  |
| -------- | ---------------------------- | ---- | ------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是    | 当前FileAsset是否是目录的回调 |
P
panqiangbiao 已提交
1013 1014 1015

**示例:**

1016
```js
P
panqiangbiao 已提交
1017
async function example() {
Z
zhang-daiyue 已提交
1018
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1019 1020 1021 1022
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1023 1024
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1025 1026 1027 1028 1029 1030 1031
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isDirectory((err, isDirectory) => {
        // do something
    });
}
P
panqiangbiao 已提交
1032 1033
```

P
panqiangbiao 已提交
1034
### isDirectory<sup>8+</sup>
P
panqiangbiao 已提交
1035

P
panqiangbiao 已提交
1036
isDirectory():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
1037 1038 1039

判断fileAsset是否为目录,使用Promise方式返回异步结果。

P
panqiangbiao 已提交
1040
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1041

P
panqiangbiao 已提交
1042
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1043

P
panqiangbiao 已提交
1044 1045
**返回值:**

H
HelloCrease 已提交
1046 1047
| 类型                     | 说明                           |
| ---------------------- | ---------------------------- |
P
panqiangbiao 已提交
1048
| Promise&lt;boolean&gt; | Promise实例,返回当前FileAsset是否是目录 |
P
panqiangbiao 已提交
1049 1050 1051

**示例:**

1052
```js
P
panqiangbiao 已提交
1053
async function example() {
Z
zhang-daiyue 已提交
1054
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1055 1056 1057 1058
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1059 1060
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1061 1062 1063 1064 1065 1066 1067 1068 1069
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isDirectory().then(function(isDirectory){
        console.info("isDirectory result:"+ isDirectory);
    }).catch(function(err){
        console.info("isDirectory failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1070 1071
```

P
panqiangbiao 已提交
1072
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
1073

P
panqiangbiao 已提交
1074
commitModify(callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
1075 1076 1077

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

P
panqiangbiao 已提交
1078
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1079

P
panqiangbiao 已提交
1080
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1081

P
panqiangbiao 已提交
1082 1083
**参数:**

H
HelloCrease 已提交
1084 1085 1086
| 参数名      | 类型                        | 必填   | 说明    |
| -------- | ------------------------- | ---- | ----- |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空 |
P
panqiangbiao 已提交
1087 1088 1089

**示例:**

1090
```js
P
panqiangbiao 已提交
1091
async function example() {
Z
zhang-daiyue 已提交
1092
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1093 1094 1095 1096
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1097 1098
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1099 1100 1101
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
P
panqiangbiao 已提交
1102
    asset.title = 'newtitle';
P
panqiangbiao 已提交
1103 1104
    asset.commitModify(() => {
        console.info('commitModify success');   
P
panqiangbiao 已提交
1105
    });
P
panqiangbiao 已提交
1106
}
P
panqiangbiao 已提交
1107 1108
```

P
panqiangbiao 已提交
1109
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
1110

P
panqiangbiao 已提交
1111
commitModify(): Promise&lt;void&gt;
P
panqiangbiao 已提交
1112 1113 1114

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

P
panqiangbiao 已提交
1115
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1116

P
panqiangbiao 已提交
1117
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1118

P
panqiangbiao 已提交
1119 1120
**返回值:**

H
HelloCrease 已提交
1121 1122
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
1123
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1124 1125 1126

**示例:**

1127
```js
P
panqiangbiao 已提交
1128
async function example() {
Z
zhang-daiyue 已提交
1129
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1130 1131 1132 1133
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1134 1135
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1136 1137 1138
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
P
panqiangbiao 已提交
1139
    asset.title = 'newtitle';
P
panqiangbiao 已提交
1140 1141
    asset.commitModify();
}
P
panqiangbiao 已提交
1142 1143
```

P
panqiangbiao 已提交
1144
### open<sup>8+</sup>
P
panqiangbiao 已提交
1145

P
panqiangbiao 已提交
1146
open(mode: string, callback: AsyncCallback&lt;number&gt;): void
P
panqiangbiao 已提交
1147 1148 1149

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

潘强标 已提交
1150 1151
**注意**:当前写操作是互斥的操作,写操作完成后需要调用close进行释放

Z
zhang-daiyue 已提交
1152
**需要权限**:ohos.permission.READ_MEDIA or ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1153

P
panqiangbiao 已提交
1154
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1155

P
panqiangbiao 已提交
1156 1157
**参数**

H
HelloCrease 已提交
1158 1159 1160 1161
| 参数名      | 类型                          | 必填   | 说明                                  |
| -------- | --------------------------- | ---- | ----------------------------------- |
| mode     | string                      | 是    | 打开文件方式,如:'r'(只读), 'w'(只写), 'rw'(读写) |
| callback | AsyncCallback&lt;number&gt; | 是    | 回调返回文件句柄                            |
P
panqiangbiao 已提交
1162 1163 1164

**示例:**

1165
```js
P
panqiangbiao 已提交
1166
async function example() {
P
panqiangbiao 已提交
1167
    let mediaType = mediaLibrary.MediaType.IMAGE;
P
panqiangbiao 已提交
1168 1169
    let DIR_IMAGE = mediaLibrary.DirectoryType.DIR_IMAGE;
    const path = await media.getPublicDirectory(DIR_IMAGE);
Z
zhang-daiyue 已提交
1170
    const asset = await media.createAsset(mediaType, "image00003.jpg", path);
P
panqiangbiao 已提交
1171 1172 1173 1174 1175 1176 1177 1178
    asset.open('rw', (openError, fd) => {
            if(fd > 0){
                asset.close(fd);
            }else{
                console.info('File Open Failed!' + openError);
            }
    });
}
P
panqiangbiao 已提交
1179 1180
```

P
panqiangbiao 已提交
1181
### open<sup>8+</sup>
P
panqiangbiao 已提交
1182

P
panqiangbiao 已提交
1183
open(mode: string): Promise&lt;number&gt;
P
panqiangbiao 已提交
1184 1185 1186

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

潘强标 已提交
1187 1188
**注意**:当前写操作是互斥的操作,写操作完成后需要调用close进行释放

Z
zhang-daiyue 已提交
1189
**需要权限**:ohos.permission.READ_MEDIA or ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1190

P
panqiangbiao 已提交
1191
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1192

P
panqiangbiao 已提交
1193 1194
**参数:**

H
HelloCrease 已提交
1195 1196 1197
| 参数名  | 类型     | 必填   | 说明                                  |
| ---- | ------ | ---- | ----------------------------------- |
| mode | string | 是    | 打开文件方式,如:'r'(只读), 'w'(只写), 'rw'(读写) |
P
panqiangbiao 已提交
1198 1199 1200

**返回值:**

H
HelloCrease 已提交
1201 1202
| 类型                    | 说明            |
| --------------------- | ------------- |
P
panqiangbiao 已提交
1203
| Promise&lt;number&gt; | Promise返回文件句柄 |
P
panqiangbiao 已提交
1204 1205 1206

**示例:**

1207
```js
P
panqiangbiao 已提交
1208
async function example() {
P
panqiangbiao 已提交
1209
    let mediaType = mediaLibrary.MediaType.IMAGE;
P
panqiangbiao 已提交
1210 1211
    let DIR_IMAGE = mediaLibrary.DirectoryType.DIR_IMAGE;
    const path = await media.getPublicDirectory(DIR_IMAGE);
Z
zhang-daiyue 已提交
1212
    const asset = await media.createAsset(mediaType, "image00003.jpg", path);
P
panqiangbiao 已提交
1213 1214 1215 1216 1217 1218 1219
    asset.open('rw')
        .then((fd) => {
            console.info('File fd!' + fd);
        })
        .catch((err) => {
            console.info('File err!' + err);
        });
P
panqiangbiao 已提交
1220
}
P
panqiangbiao 已提交
1221 1222
```

P
panqiangbiao 已提交
1223
### close<sup>8+</sup>
P
panqiangbiao 已提交
1224

P
panqiangbiao 已提交
1225
close(fd: number, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
1226 1227 1228

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

Z
zhang-daiyue 已提交
1229
**需要权限**:ohos.permission.READ_MEDIA or ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1230

P
panqiangbiao 已提交
1231
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1232

P
panqiangbiao 已提交
1233 1234
**参数:**

H
HelloCrease 已提交
1235 1236 1237 1238
| 参数名      | 类型                        | 必填   | 说明    |
| -------- | ------------------------- | ---- | ----- |
| fd       | number                    | 是    | 文件描述符 |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空 |
P
panqiangbiao 已提交
1239 1240 1241

**示例:**

1242
```js
P
panqiangbiao 已提交
1243
async function example() {
Z
zhang-daiyue 已提交
1244
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1245 1246 1247 1248
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1249 1250
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1251 1252 1253
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
Z
zhang-daiyue 已提交
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
    asset.open('rw').then((fd) => {
        console.info('File fd!' + fd);
        asset.close(fd, (closeErr) => {
            if (closeErr != undefined) {
                console.info('mediaLibraryTest : close : FAIL ' + closeErr.message);
                console.info('mediaLibraryTest : ASSET_CALLBACK : FAIL');
            } else {
                console.info("=======asset.close success====>");
            }
        });
    })
    .catch((err) => {
        console.info('File err!' + err);
P
panqiangbiao 已提交
1267 1268
    });
}
P
panqiangbiao 已提交
1269 1270
```

P
panqiangbiao 已提交
1271
### close<sup>8+</sup>
P
panqiangbiao 已提交
1272

P
panqiangbiao 已提交
1273
close(fd: number): Promise&lt;void&gt;
P
panqiangbiao 已提交
1274 1275 1276

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

Z
zhang-daiyue 已提交
1277
**需要权限**:ohos.permission.READ_MEDIA or ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1278

P
panqiangbiao 已提交
1279
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1280

P
panqiangbiao 已提交
1281 1282
**参数:**

H
HelloCrease 已提交
1283 1284 1285
| 参数名  | 类型     | 必填   | 说明    |
| ---- | ------ | ---- | ----- |
| fd   | number | 是    | 文件描述符 |
P
panqiangbiao 已提交
1286 1287 1288

**返回值:**

H
HelloCrease 已提交
1289 1290
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
1291
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1292 1293 1294

**示例:**

1295
```js
P
panqiangbiao 已提交
1296
async function example() {
Z
zhang-daiyue 已提交
1297
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1298 1299 1300 1301
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1302 1303
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1304 1305 1306
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
Z
zhang-daiyue 已提交
1307 1308 1309 1310 1311 1312
    asset.open('rw').then((fd) => {
        console.info('File fd!' + fd);
        asset.close(fd).then((closeErr) => {
            if (closeErr != undefined) {
                console.info('mediaLibraryTest : close : FAIL ' + closeErr.message);
                console.info('mediaLibraryTest : ASSET_CALLBACK : FAIL');
P
panqiangbiao 已提交
1313

Z
zhang-daiyue 已提交
1314 1315 1316 1317 1318 1319 1320
            } else {
                console.info("=======asset.close success====>");
            }
        });
    })
    .catch((err) => {
        console.info('File err!' + err);
P
panqiangbiao 已提交
1321 1322
    });
}
P
panqiangbiao 已提交
1323 1324
```

P
panqiangbiao 已提交
1325
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
1326

P
panqiangbiao 已提交
1327
getThumbnail(callback: AsyncCallback&lt;image.PixelMap&gt;): void
P
panqiangbiao 已提交
1328 1329 1330

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

P
panqiangbiao 已提交
1331
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1332

P
panqiangbiao 已提交
1333
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1334

P
panqiangbiao 已提交
1335 1336
**参数:**

H
HelloCrease 已提交
1337 1338 1339
| 参数名      | 类型                                  | 必填   | 说明               |
| -------- | ----------------------------------- | ---- | ---------------- |
| callback | AsyncCallback&lt;image.PixelMap&gt; | 是    | 回调返回缩略图的PixelMap |
P
panqiangbiao 已提交
1340 1341 1342

**示例:**

1343
```js
P
panqiangbiao 已提交
1344
async function example() {
Z
zhang-daiyue 已提交
1345
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1346 1347 1348 1349
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1350 1351
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1352 1353 1354 1355
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail((err, pixelmap) => {
P
panqiangbiao 已提交
1356
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
1357 1358
    });
}
P
panqiangbiao 已提交
1359 1360
```

P
panqiangbiao 已提交
1361
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
1362

P
panqiangbiao 已提交
1363
getThumbnail(size: Size, callback: AsyncCallback&lt;image.PixelMap&gt;): void
P
panqiangbiao 已提交
1364 1365 1366

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

P
panqiangbiao 已提交
1367
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1368

P
panqiangbiao 已提交
1369
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1370

P
panqiangbiao 已提交
1371 1372
**参数:**

H
HelloCrease 已提交
1373 1374 1375 1376
| 参数名      | 类型                                  | 必填   | 说明               |
| -------- | ----------------------------------- | ---- | ---------------- |
| size     | [Size](#size8)                      | 是    | 缩略图尺寸            |
| callback | AsyncCallback&lt;image.PixelMap&gt; | 是    | 回调返回缩略图的PixelMap |
P
panqiangbiao 已提交
1377 1378 1379

**示例:**

1380
```js
P
panqiangbiao 已提交
1381
async function example() {
Z
zhang-daiyue 已提交
1382
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1383 1384 1385 1386
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1387 1388
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1389
    };
Z
zhang-daiyue 已提交
1390
    let size = { width: 720, height: 720 };
P
panqiangbiao 已提交
1391 1392 1393
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail(size, (err, pixelmap) => {
P
panqiangbiao 已提交
1394
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
1395 1396
    });
}
P
panqiangbiao 已提交
1397 1398
```

P
panqiangbiao 已提交
1399
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
1400

P
panqiangbiao 已提交
1401
getThumbnail(size?: Size): Promise&lt;image.PixelMap&gt;
P
panqiangbiao 已提交
1402 1403 1404

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

P
panqiangbiao 已提交
1405
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1406

P
panqiangbiao 已提交
1407
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1408

P
panqiangbiao 已提交
1409 1410
**参数:**

H
HelloCrease 已提交
1411 1412 1413
| 参数名  | 类型             | 必填   | 说明    |
| ---- | -------------- | ---- | ----- |
| size | [Size](#size8) | 否    | 缩略图尺寸 |
P
panqiangbiao 已提交
1414 1415 1416

**返回值:**

H
HelloCrease 已提交
1417 1418
| 类型                            | 说明                    |
| ----------------------------- | --------------------- |
P
panqiangbiao 已提交
1419
| Promise&lt;image.PixelMap&gt; | Promise返回缩略图的PixelMap |
P
panqiangbiao 已提交
1420 1421 1422

**示例:**

1423
```js
P
panqiangbiao 已提交
1424
async function example() {
Z
zhang-daiyue 已提交
1425
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1426 1427
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
潘强标 已提交
1428 1429 1430 1431
        selections: fileKeyObj.MEDIA_TYPE + '= ?',
        selectionArgs: [imageType.toString()],
        order: fileKeyObj.DATE_ADDED + " DESC",
        extendArgs: "",
P
panqiangbiao 已提交
1432
    };
Z
zhang-daiyue 已提交
1433
    let size = { width: 720, height: 720 };
P
panqiangbiao 已提交
1434 1435
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
潘强标 已提交
1436 1437
    asset.getThumbnail(size)
    .then((pixelmap) => {
P
panqiangbiao 已提交
1438
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
潘强标 已提交
1439 1440 1441
    })
    .catch((err) => {
        console.info('mediaLibraryTest : getThumbnail fail'+ err);
P
panqiangbiao 已提交
1442 1443
    });
}
P
panqiangbiao 已提交
1444 1445
```

P
panqiangbiao 已提交
1446
### favorite<sup>8+</sup>
P
panqiangbiao 已提交
1447

P
panqiangbiao 已提交
1448
favorite(isFavorite: boolean, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
1449 1450 1451

将文件设置为收藏文件,使用callback方式返回异步结果。

P
panqiangbiao 已提交
1452
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1453

P
panqiangbiao 已提交
1454
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1455

P
panqiangbiao 已提交
1456 1457
**参数:**

H
HelloCrease 已提交
1458 1459 1460 1461
| 参数名        | 类型                        | 必填   | 说明                                 |
| ---------- | ------------------------- | ---- | ---------------------------------- |
| isFavorite | boolean                   | 是    | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
| callback   | AsyncCallback&lt;void&gt; | 是    | 回调返回空                              |
P
panqiangbiao 已提交
1462 1463 1464

**示例:**

1465
```js
P
panqiangbiao 已提交
1466
async function example() {
Z
zhang-daiyue 已提交
1467
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1468 1469 1470 1471
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1472 1473
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1474 1475 1476 1477 1478 1479 1480
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.favorite(true,function(err){
        // do something
    });
}
P
panqiangbiao 已提交
1481 1482
```

P
panqiangbiao 已提交
1483
### favorite<sup>8+</sup>
P
panqiangbiao 已提交
1484

P
panqiangbiao 已提交
1485
favorite(isFavorite: boolean): Promise&lt;void&gt;
P
panqiangbiao 已提交
1486 1487 1488

将文件设置为收藏文件,使用promise方式返回异步结果。

P
panqiangbiao 已提交
1489
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1490

P
panqiangbiao 已提交
1491
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1492

P
panqiangbiao 已提交
1493 1494
**参数:**

H
HelloCrease 已提交
1495 1496 1497
| 参数名        | 类型      | 必填   | 说明                                 |
| ---------- | ------- | ---- | ---------------------------------- |
| isFavorite | boolean | 是    | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
P
panqiangbiao 已提交
1498 1499 1500

**返回值:**

H
HelloCrease 已提交
1501 1502
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
1503
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1504 1505 1506

**示例:**

1507
```js
P
panqiangbiao 已提交
1508
async function example() {
Z
zhang-daiyue 已提交
1509
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1510 1511 1512 1513
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1514 1515
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1516 1517 1518 1519 1520 1521 1522 1523 1524
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.favorite(true).then(function() {
        console.info("favorite successfully");
    }).catch(function(err){
        console.info("favorite failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1525 1526
```

P
panqiangbiao 已提交
1527
### isFavorite<sup>8+</sup>
P
panqiangbiao 已提交
1528

P
panqiangbiao 已提交
1529
isFavorite(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
1530 1531 1532

判断该文件是否为收藏文件,使用callback方式返回异步结果。

P
panqiangbiao 已提交
1533
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1534

P
panqiangbiao 已提交
1535
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1536

P
panqiangbiao 已提交
1537 1538
**参数:**

H
HelloCrease 已提交
1539 1540 1541
| 参数名      | 类型                           | 必填   | 说明          |
| -------- | ---------------------------- | ---- | ----------- |
| callback | AsyncCallback&lt;boolean&gt; | 是    | 回调表示是否为收藏文件 |
P
panqiangbiao 已提交
1542 1543 1544

**示例:**

1545
```js
P
panqiangbiao 已提交
1546
async function example() {
Z
zhang-daiyue 已提交
1547
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1548 1549 1550 1551
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1552 1553
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isFavorite((err, isFavorite) => {
        if (isFavorite) {
            console.info('FileAsset is favorite');
        }else{
            console.info('FileAsset is not favorite');
        }
    });
}
P
panqiangbiao 已提交
1565 1566
```

P
panqiangbiao 已提交
1567
### isFavorite<sup>8+</sup>
P
panqiangbiao 已提交
1568

P
panqiangbiao 已提交
1569
isFavorite():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
1570 1571 1572

判断该文件是否为收藏文件,使用promise方式返回异步结果。

P
panqiangbiao 已提交
1573
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1574

P
panqiangbiao 已提交
1575
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1576

P
panqiangbiao 已提交
1577 1578
**返回值:**

H
HelloCrease 已提交
1579 1580
| 类型                     | 说明                 |
| ---------------------- | ------------------ |
P
panqiangbiao 已提交
1581
| Promise&lt;boolean&gt; | Promise回调表示是否是收藏文件 |
P
panqiangbiao 已提交
1582 1583 1584

**示例:**

1585
```js
P
panqiangbiao 已提交
1586
async function example() {
Z
zhang-daiyue 已提交
1587
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1588 1589 1590 1591
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1592 1593
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1594 1595 1596 1597 1598 1599 1600 1601 1602
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isFavorite().then(function(isFavorite){
        console.info("isFavorite result:"+ isFavorite);
    }).catch(function(err){
        console.info("isFavorite failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1603 1604
```

P
panqiangbiao 已提交
1605
### trash<sup>8+</sup>
P
panqiangbiao 已提交
1606

A
AOL 已提交
1607
trash(isTrash: boolean, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
1608 1609 1610

当文件被定位时,将文件放到垃圾文件夹,使用callback方式返回异步结果。

P
panqiangbiao 已提交
1611 1612
放入垃圾文件夹的文件不会被真正删除,可以通过isTrash = false参数恢复成正常文件。

P
panqiangbiao 已提交
1613
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1614

P
panqiangbiao 已提交
1615
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1616

P
panqiangbiao 已提交
1617 1618
**参数:**

H
HelloCrease 已提交
1619 1620 1621 1622
| 参数名      | 类型                        | 必填   | 说明        |
| -------- | ------------------------- | ---- | --------- |
| isTrash  | boolean                   | 是    | 是否设置为垃圾文件 |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空     |
P
panqiangbiao 已提交
1623 1624 1625

**示例:**

1626
```js
P
panqiangbiao 已提交
1627
async function example() {
Z
zhang-daiyue 已提交
1628
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1629 1630 1631 1632
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1633 1634
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1635 1636 1637 1638 1639
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.trash(true, trashCallBack);
    function trashCallBack(err, trash) {
P
panqiangbiao 已提交
1640
        console.info('mediaLibraryTest : ASSET_CALLBACK ASSET_CALLBACK trash');
P
panqiangbiao 已提交
1641
    }
P
panqiangbiao 已提交
1642
}
P
panqiangbiao 已提交
1643 1644
```

P
panqiangbiao 已提交
1645
### trash<sup>8+</sup>
P
panqiangbiao 已提交
1646

A
AOL 已提交
1647
trash(isTrash: boolean): Promise&lt;void&gt;
P
panqiangbiao 已提交
1648 1649 1650

当文件被定位时,将文件放到垃圾文件夹,使用promise方式返回异步结果。

P
panqiangbiao 已提交
1651 1652
放入垃圾文件夹的文件不会被真正删除,可以通过isTrash = false参数恢复成正常文件。

P
panqiangbiao 已提交
1653
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1654

P
panqiangbiao 已提交
1655
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1656

P
panqiangbiao 已提交
1657 1658
**参数:**

H
HelloCrease 已提交
1659 1660 1661
| 参数名     | 类型      | 必填   | 说明        |
| ------- | ------- | ---- | --------- |
| isTrash | boolean | 是    | 是否设置为垃圾文件 |
P
panqiangbiao 已提交
1662 1663 1664

**返回值:**

H
HelloCrease 已提交
1665 1666
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
1667
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1668 1669 1670

**示例:**

1671
```js
P
panqiangbiao 已提交
1672
async function example() {
Z
zhang-daiyue 已提交
1673
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1674 1675 1676 1677
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1678 1679
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1680 1681 1682 1683 1684 1685 1686 1687 1688
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.trash(true).then(function() {
        console.info("trash successfully");
    }).catch(function(err){
        console.info("trash failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1689 1690
```

P
panqiangbiao 已提交
1691
### isTrash<sup>8+</sup>
P
panqiangbiao 已提交
1692

P
panqiangbiao 已提交
1693
isTrash(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
1694 1695 1696

当文件被定位,判断文件是否为垃圾文件,使用callback方式返回异步结果。

P
panqiangbiao 已提交
1697
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1698

P
panqiangbiao 已提交
1699
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1700

P
panqiangbiao 已提交
1701 1702
**参数:**

H
HelloCrease 已提交
1703 1704 1705
| 参数名      | 类型                           | 必填   | 说明              |
| -------- | ---------------------------- | ---- | --------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是    | 回调返回表示文件是否为垃圾文件 |
P
panqiangbiao 已提交
1706 1707 1708

**示例:**

1709
```js
P
panqiangbiao 已提交
1710
async function example() {
Z
zhang-daiyue 已提交
1711
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1712 1713 1714 1715
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1716 1717
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1718 1719 1720 1721 1722 1723
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isTrash(isTrashCallBack);
    function isTrashCallBack(err, isTrash) {
            if (isTrash == true) {
P
panqiangbiao 已提交
1724
                console.info('mediaLibraryTest : ASSET_CALLBACK ASSET_CALLBACK isTrash = ' + isTrash);
Z
zhang-daiyue 已提交
1725
                asset.trash(true, istrashCallBack);
P
panqiangbiao 已提交
1726 1727

            } else {
P
panqiangbiao 已提交
1728 1729
                console.info('mediaLibraryTest : ASSET_CALLBACK isTrash Unsuccessfull = ' + err);
                console.info('mediaLibraryTest : ASSET_CALLBACK isTrash : FAIL');
P
panqiangbiao 已提交
1730 1731

            }
P
panqiangbiao 已提交
1732
    }
P
panqiangbiao 已提交
1733
}
P
panqiangbiao 已提交
1734 1735
```

P
panqiangbiao 已提交
1736
### isTrash<sup>8+</sup>
P
panqiangbiao 已提交
1737

P
panqiangbiao 已提交
1738
isTrash():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
1739

P
panqiangbiao 已提交
1740
当文件被定位,判断文件是否为垃圾文件,使用promise方式返回异步结果。
P
panqiangbiao 已提交
1741

P
panqiangbiao 已提交
1742
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1743

P
panqiangbiao 已提交
1744
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1745

P
panqiangbiao 已提交
1746 1747
**返回值:**

H
HelloCrease 已提交
1748 1749
| 类型                  | 说明                   |
| ------------------- | -------------------- |
P
panqiangbiao 已提交
1750
| Promise&lt;void&gt; | Promise回调表示文件是否为垃圾文件 |
P
panqiangbiao 已提交
1751 1752 1753

**示例:**

1754
```js
P
panqiangbiao 已提交
1755
async function example() {
Z
zhang-daiyue 已提交
1756
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1757 1758 1759 1760
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1761 1762
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1763 1764 1765 1766 1767 1768 1769 1770 1771
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isTrash().then(function(isTrash){
        console.info("isTrash result:"+ isTrash);
    }).catch(function(err){
        console.info("isTrash failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1772 1773
```

Z
zengyawen 已提交
1774
## FetchFileResult<sup>7+</sup>
P
panqiangbiao 已提交
1775 1776 1777

文件检索结果集。

Z
zengyawen 已提交
1778
### getCount<sup>7+</sup>
P
panqiangbiao 已提交
1779

P
panqiangbiao 已提交
1780
getCount(): number
P
panqiangbiao 已提交
1781 1782 1783

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

P
panqiangbiao 已提交
1784
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1785

P
panqiangbiao 已提交
1786 1787
**返回值**

H
HelloCrease 已提交
1788 1789
| 类型     | 说明       |
| ------ | -------- |
P
panqiangbiao 已提交
1790
| number | 检索到的文件总数 |
P
panqiangbiao 已提交
1791 1792 1793

**示例**

1794
```js
P
panqiangbiao 已提交
1795
async function example() {
Z
zhang-daiyue 已提交
1796 1797
    let fileKeyObj = mediaLibrary.FileKey
    let fileType = mediaLibrary.MediaType.FILE;
P
panqiangbiao 已提交
1798 1799 1800
    let getFileCountOneOp = {
        selections: fileKeyObj.MEDIA_TYPE + '= ?',
        selectionArgs: [fileType.toString()],
P
panqiangbiao 已提交
1801 1802
        order: fileKeyObj.DATE_ADDED + " DESC",
        extendArgs: "",
P
panqiangbiao 已提交
1803 1804 1805 1806
    };
    let fetchFileResult = await media.getFileAssets(getFileCountOneOp);
    const fetchCount = fetchFileResult.getCount();
}
P
panqiangbiao 已提交
1807 1808
```

Z
zengyawen 已提交
1809
### isAfterLast<sup>7+</sup>
P
panqiangbiao 已提交
1810

P
panqiangbiao 已提交
1811
isAfterLast(): boolean
P
panqiangbiao 已提交
1812 1813 1814

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

P
panqiangbiao 已提交
1815
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1816

P
panqiangbiao 已提交
1817 1818
**返回值**

H
HelloCrease 已提交
1819 1820
| 类型      | 说明                                 |
| ------- | ---------------------------------- |
P
panqiangbiao 已提交
1821
| boolean | 当读到最后一条记录后,后续没有记录返回true,否则返回false。 |
P
panqiangbiao 已提交
1822 1823 1824

**示例**

1825
```js
P
panqiangbiao 已提交
1826
async function example() {
Z
zhang-daiyue 已提交
1827
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1828 1829 1830 1831
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1832 1833
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1834 1835 1836
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
1837
    console.info('mediaLibraryTest : count:' + fetchCount);
P
panqiangbiao 已提交
1838 1839 1840 1841
    let fileAsset = await fetchFileResult.getFirstObject();
    for (var i = 1; i < fetchCount; i++) {
            fileAsset = await fetchFileResult.getNextObject();
            if(i == fetchCount - 1) {
P
panqiangbiao 已提交
1842
              console.info('mediaLibraryTest : isLast');
P
panqiangbiao 已提交
1843
              var result = fetchFileResult.isAfterLast();
P
panqiangbiao 已提交
1844 1845
              console.info('mediaLibraryTest : isAfterLast:' + result);
              console.info('mediaLibraryTest : isAfterLast end');
P
panqiangbiao 已提交
1846
              fetchFileResult.close();
P
panqiangbiao 已提交
1847

P
panqiangbiao 已提交
1848 1849
            }
    }
P
panqiangbiao 已提交
1850
}
P
panqiangbiao 已提交
1851 1852
```

Z
zengyawen 已提交
1853
### close<sup>7+</sup>
P
panqiangbiao 已提交
1854

P
panqiangbiao 已提交
1855
close(): void
P
panqiangbiao 已提交
1856 1857 1858

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

P
panqiangbiao 已提交
1859
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1860

P
panqiangbiao 已提交
1861 1862
**示例**

1863
```js
P
panqiangbiao 已提交
1864
async function example() {
Z
zhang-daiyue 已提交
1865
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1866 1867 1868 1869
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1870 1871
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1872 1873 1874 1875
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.close();
}
P
panqiangbiao 已提交
1876 1877
```

Z
zengyawen 已提交
1878
### getFirstObject<sup>7+</sup>
P
panqiangbiao 已提交
1879

P
panqiangbiao 已提交
1880
getFirstObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1881 1882 1883

获取文件检索结果中的第一个文件资产。此方法使用回调返回FileAsset。

P
panqiangbiao 已提交
1884
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1885

P
panqiangbiao 已提交
1886 1887
**参数**

Z
zengyawen 已提交
1888 1889 1890
| 参数名   | 类型                                          | 必填 | 说明                                        |
| -------- | --------------------------------------------- | ---- | ------------------------------------------- |
| callback | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步获取结果集中第一个FileAsset完成后的回调 |
P
panqiangbiao 已提交
1891 1892 1893

**示例**

1894
```js
P
panqiangbiao 已提交
1895
async function example() {
Z
zhang-daiyue 已提交
1896
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1897 1898 1899 1900
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1901 1902
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1903 1904
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
1905
    fetchFileResult.getFirstObject((err, fileAsset) => {
P
panqiangbiao 已提交
1906 1907 1908 1909
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
1910
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
1911 1912
    })
}
P
panqiangbiao 已提交
1913 1914
```

Z
zengyawen 已提交
1915
### getFirstObject<sup>7+</sup>
P
panqiangbiao 已提交
1916

P
panqiangbiao 已提交
1917
getFirstObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1918

Z
zengyawen 已提交
1919
获取文件检索结果中的第一个文件资产。此方法使用Promise方式返回FileAsset。
P
panqiangbiao 已提交
1920

P
panqiangbiao 已提交
1921
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1922

P
panqiangbiao 已提交
1923 1924
**返回值**

Z
zengyawen 已提交
1925 1926
| 类型                                    | 说明                       |
| --------------------------------------- | -------------------------- |
Z
zengyawen 已提交
1927
| Promise&lt;[FileAsset](#fileasset7)&gt; | Promise方式返回FileAsset。 |
P
panqiangbiao 已提交
1928 1929 1930

**示例**

1931
```js
P
panqiangbiao 已提交
1932
async function example() {
Z
zhang-daiyue 已提交
1933
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1934 1935 1936 1937
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1938 1939
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1940 1941 1942 1943 1944 1945 1946 1947
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getFirstObject().then(function(fileAsset){
        console.info("getFirstObject successfully:"+ JSON.stringify(fileAsset));
    }).catch(function(err){
        console.info("getFirstObject failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1948 1949
```

Z
zengyawen 已提交
1950
### getNextObject<sup>7+</sup>
P
panqiangbiao 已提交
1951

P
panqiangbiao 已提交
1952
 getNextObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1953 1954 1955

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

P
panqiangbiao 已提交
1956
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1957

P
panqiangbiao 已提交
1958 1959
**参数**

Z
zengyawen 已提交
1960 1961 1962
| 参数名    | 类型                                          | 必填 | 说明                                      |
| --------- | --------------------------------------------- | ---- | ----------------------------------------- |
| callbacke | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步返回结果集中下一个FileAsset之后的回调 |
P
panqiangbiao 已提交
1963 1964 1965

**示例**

1966
```js
P
panqiangbiao 已提交
1967
async function example() {
Z
zhang-daiyue 已提交
1968
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1969 1970 1971 1972
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1973 1974
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1975 1976
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
1977
    fetchFileResult.getNextObject((err, fileAsset) => {
P
panqiangbiao 已提交
1978 1979 1980 1981
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
1982
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
1983 1984
    })
}
P
panqiangbiao 已提交
1985 1986
```

Z
zengyawen 已提交
1987
### getNextObject<sup>7+</sup>
P
panqiangbiao 已提交
1988

P
panqiangbiao 已提交
1989
 getNextObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1990 1991 1992

获取文件检索结果中的下一个文件资产。此方法使用promise方式来异步返回FileAsset。

P
panqiangbiao 已提交
1993
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1994

P
panqiangbiao 已提交
1995 1996
**返回值**

Z
zengyawen 已提交
1997 1998 1999
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
2000 2001 2002

**示例**

2003
```js
P
panqiangbiao 已提交
2004
async function example() {
Z
zhang-daiyue 已提交
2005
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2006 2007 2008 2009
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2010 2011
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2012 2013 2014
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
2015
    console.info('mediaLibraryTest : count:' + fetchCount);
Z
zhang-daiyue 已提交
2016
    let fileAsset = await fetchFileResult.getNextObject();
P
panqiangbiao 已提交
2017
}
P
panqiangbiao 已提交
2018 2019
```

Z
zengyawen 已提交
2020
### getLastObject<sup>7+</sup>
P
panqiangbiao 已提交
2021

P
panqiangbiao 已提交
2022
getLastObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
2023 2024 2025

获取文件检索结果中的最后一个文件资产。此方法使用callback回调来返回FileAsset。

P
panqiangbiao 已提交
2026
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2027

P
panqiangbiao 已提交
2028 2029
**参数**

Z
zengyawen 已提交
2030 2031
| 参数名   | 类型                                          | 必填 | 说明                        |
| -------- | --------------------------------------------- | ---- | --------------------------- |
Z
zengyawen 已提交
2032
| callback | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
2033 2034 2035

**示例**

2036
```js
P
panqiangbiao 已提交
2037
async function example() {
Z
zhang-daiyue 已提交
2038
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2039 2040 2041 2042
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2043 2044
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2045 2046
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
2047
    fetchFileResult.getLastObject((err, fileAsset) => {
P
panqiangbiao 已提交
2048 2049 2050 2051
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
2052
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
2053 2054
    })
}
P
panqiangbiao 已提交
2055 2056
```

Z
zengyawen 已提交
2057
### getLastObject<sup>7+</sup>
P
panqiangbiao 已提交
2058

P
panqiangbiao 已提交
2059
getLastObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
2060 2061 2062

获取文件检索结果中的最后一个文件资产。此方法使用Promise方式来返回FileAsset。

P
panqiangbiao 已提交
2063
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2064

P
panqiangbiao 已提交
2065 2066
**返回值**

Z
zengyawen 已提交
2067 2068 2069
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
2070 2071 2072

**示例**

2073
```js
P
panqiangbiao 已提交
2074
async function example() {
Z
zhang-daiyue 已提交
2075
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2076 2077 2078 2079
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2080 2081
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2082 2083 2084 2085
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    let lastObject = await fetchFileResult.getLastObject();
}
P
panqiangbiao 已提交
2086 2087
```

Z
zengyawen 已提交
2088
### getPositionObject<sup>7+</sup>
P
panqiangbiao 已提交
2089

P
panqiangbiao 已提交
2090
getPositionObject(index: number, callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
2091 2092 2093

获取文件检索结果中具有指定索引的文件资产。此方法使用回调来返回FileAsset。

P
panqiangbiao 已提交
2094
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2095

P
panqiangbiao 已提交
2096 2097
**参数**

Z
zengyawen 已提交
2098
| 参数名       | 类型                                       | 必填   | 说明                 |
H
HelloCrease 已提交
2099 2100
| -------- | ---------------------------------------- | ---- | ------------------ |
| index    | number                                   | 是    | 要获取的文件的索引,从0开始     |
Z
zengyawen 已提交
2101
| callback | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是    | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
2102 2103 2104

**示例**

2105
```js
P
panqiangbiao 已提交
2106
async function example() {
Z
zhang-daiyue 已提交
2107
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2108 2109 2110 2111
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2112 2113
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2114 2115
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
2116
    fetchFileResult.getPositionObject(0, (err, fileAsset) => {
P
panqiangbiao 已提交
2117 2118 2119 2120
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
2121
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
2122 2123
    })
}
P
panqiangbiao 已提交
2124 2125
```

Z
zengyawen 已提交
2126
### getPositionObject<sup>7+</sup>
P
panqiangbiao 已提交
2127

P
panqiangbiao 已提交
2128
getPositionObject(index: number): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
2129 2130 2131

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

P
panqiangbiao 已提交
2132
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2133

P
panqiangbiao 已提交
2134 2135
**参数**

Z
zengyawen 已提交
2136
| 参数名    | 类型     | 必填   | 说明             |
H
HelloCrease 已提交
2137 2138
| ----- | ------ | ---- | -------------- |
| index | number | 是    | 要获取的文件的索引,从0开始 |
P
panqiangbiao 已提交
2139 2140 2141

**返回值**

Z
zengyawen 已提交
2142 2143 2144
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
2145 2146 2147

**示例**

2148
```js
P
panqiangbiao 已提交
2149
async function example() {
Z
zhang-daiyue 已提交
2150
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2151 2152 2153 2154
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2155 2156
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2157 2158
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
2159
    fetchFileResult.getPositionObject(1) .then(function (fileAsset){
2160
        console.log('fileAsset.displayName : ' + fileAsset.displayName);
Z
zhang-daiyue 已提交
2161
    }).catch(function (err) {
2162
        console.info("getFileAssets failed with error:" + err);
Z
zhang-daiyue 已提交
2163
    });
P
panqiangbiao 已提交
2164
}
P
panqiangbiao 已提交
2165 2166
```

Z
zengyawen 已提交
2167
### getAllObject<sup>7+</sup>
P
panqiangbiao 已提交
2168

P
panqiangbiao 已提交
2169
getAllObject(callback: AsyncCallback&lt;Array&lt;FileAsset&gt;&gt;): void
P
panqiangbiao 已提交
2170 2171 2172

获取文件检索结果中的所有文件资产。此方法使用Callback回调来返回FileAsset结果集。

P
panqiangbiao 已提交
2173
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2174

P
panqiangbiao 已提交
2175 2176
**参数**

Z
zengyawen 已提交
2177
| 参数名       | 类型                                       | 必填   | 说明                   |
H
HelloCrease 已提交
2178
| -------- | ---------------------------------------- | ---- | -------------------- |
Z
zengyawen 已提交
2179
| callback | AsyncCallback<Array<[FileAsset](#fileasset7)>> | 是    | 异步返回FileAsset列表之后的回调 |
P
panqiangbiao 已提交
2180 2181 2182

**示例**

2183
```js
P
panqiangbiao 已提交
2184
async function example() {
Z
zhang-daiyue 已提交
2185
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2186 2187 2188 2189
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2190 2191
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2192 2193
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
2194
    fetchFileResult.getAllObject((err, fileAsset) => {
P
panqiangbiao 已提交
2195 2196 2197 2198
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
2199
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
2200 2201
    })
}
P
panqiangbiao 已提交
2202 2203
```

Z
zengyawen 已提交
2204
### getAllObject<sup>7+</sup>
P
panqiangbiao 已提交
2205

P
panqiangbiao 已提交
2206
getAllObject(): Promise&lt;Array&lt;FileAsset&gt;&gt;
P
panqiangbiao 已提交
2207 2208 2209

获取文件检索结果中的所有文件资产。此方法使用Promise来返回FileAsset结果集。

P
panqiangbiao 已提交
2210
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2211

P
panqiangbiao 已提交
2212 2213
**返回值**

Z
zengyawen 已提交
2214 2215 2216
| 类型                                     | 说明                  |
| ---------------------------------------- | --------------------- |
| Promise<Array<[FileAsset](#fileasset7)>> | 返回FileAsset对象列表 |
P
panqiangbiao 已提交
2217 2218 2219

**示例**

2220
```js
P
panqiangbiao 已提交
2221
async function example() {
Z
zhang-daiyue 已提交
2222
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2223 2224 2225 2226
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2227 2228
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2229 2230 2231 2232
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    var data = fetchFileResult.getAllObject();
}
P
panqiangbiao 已提交
2233 2234
```

Z
zengyawen 已提交
2235
## Album<sup>7+</sup>
P
panqiangbiao 已提交
2236 2237 2238

实体相册

Z
zengyawen 已提交
2239
### 属性
P
panqiangbiao 已提交
2240

Z
zengyawen 已提交
2241 2242
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.Core

Z
zengyawen 已提交
2243
| 名称           | 类型    | 可读   | 可写   | 说明      |
H
HelloCrease 已提交
2244
| ------------ | ------ | ---- | ---- | ------- |
Z
zengyawen 已提交
2245 2246 2247
| albumId | number | 是    | 否    | 相册编号    |
| albumName | string | 是    | 是    | 相册名称    |
| albumUri<sup>8+</sup> | string | 是    | 否    | 相册Uri   |
H
HelloCrease 已提交
2248
| dateModified | number | 是    | 否    | 修改日期    |
Z
zengyawen 已提交
2249 2250 2251
| count<sup>8+</sup> | number | 是    | 否    | 相册中文件数量 |
| relativePath<sup>8+</sup> | string | 是    | 否    | 相对路径    |
| coverUri<sup>8+</sup> | string | 是    | 否    | 封面文件Uri |
P
panqiangbiao 已提交
2252

P
panqiangbiao 已提交
2253 2254 2255
### commitModify<sup>8+</sup>

commitModify(callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
2256 2257 2258

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

P
panqiangbiao 已提交
2259
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
2260

P
panqiangbiao 已提交
2261
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2262

P
panqiangbiao 已提交
2263 2264
**参数**

Z
zengyawen 已提交
2265 2266 2267
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |
P
panqiangbiao 已提交
2268 2269 2270

**示例**

2271
```js
P
panqiangbiao 已提交
2272
async function example() {
P
panqiangbiao 已提交
2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.albumName = 'hello';
    album.commitModify((err) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log('Modify successful.');
    })
}
P
panqiangbiao 已提交
2288 2289
```

P
panqiangbiao 已提交
2290
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
2291

P
panqiangbiao 已提交
2292
commitModify(): Promise&lt;void&gt;
P
panqiangbiao 已提交
2293 2294 2295

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

P
panqiangbiao 已提交
2296
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
2297

P
panqiangbiao 已提交
2298
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2299

P
panqiangbiao 已提交
2300 2301
**返回值**

H
HelloCrease 已提交
2302 2303
| 类型                  | 说明           |
| ------------------- | ------------ |
P
panqiangbiao 已提交
2304 2305 2306 2307
| Promise&lt;void&gt; | Promise调用返回空 |

**示例**

2308
```js
P
panqiangbiao 已提交
2309
async function example() {
P
panqiangbiao 已提交
2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.albumName = 'hello';
    album.commitModify().then(function() {
        console.info("commitModify successfully");
    }).catch(function(err){
        console.info("commitModify failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
2323 2324
```

Z
zengyawen 已提交
2325
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
2326

P
panqiangbiao 已提交
2327
getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void
P
panqiangbiao 已提交
2328 2329 2330

按照检索条件获取相册中的文件。此方法使用Callback回调来返回文件结果集。

P
panqiangbiao 已提交
2331
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
2332

P
panqiangbiao 已提交
2333
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2334

P
panqiangbiao 已提交
2335 2336
**参数**

Z
zengyawen 已提交
2337
| 参数名   | 类型                                                | 必填 | 说明                                |
Z
zengyawen 已提交
2338
| -------- | --------------------------------------------------- | ---- | ----------------------------------- |
Z
zengyawen 已提交
2339 2340
| options  | [MediaFetchOptions](#mediafetchoptions7)            | 是   | 媒体检索选项。                      |
| callback | AsyncCallback<[FetchFileResult](#fetchfileresult7)> | 是   | 异步返回FetchFileResult之后的回调。 |
P
panqiangbiao 已提交
2341 2342 2343

**示例**

2344
```js
P
panqiangbiao 已提交
2345
async function example() {
P
panqiangbiao 已提交
2346 2347 2348 2349
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
Z
zhang-daiyue 已提交
2350 2351 2352 2353
    let fileNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
    }
P
panqiangbiao 已提交
2354 2355 2356 2357 2358 2359
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.getFileAssets(fileNoArgsfetchOp, getFileAssetsCallBack);
    function getFileAssetsCallBack(err, fetchFileResult) {
        // do something
    }
P
panqiangbiao 已提交
2360 2361 2362
}
```

Z
zengyawen 已提交
2363
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
2364

P
panqiangbiao 已提交
2365
 getFileAssets(options?: MediaFetchOptions): Promise&lt;FetchFileResult&gt;
P
panqiangbiao 已提交
2366

Z
zengyawen 已提交
2367
按照检索条件获取相册中的文件。此方法使用异步Promise来返回文件结果集。
P
panqiangbiao 已提交
2368

P
panqiangbiao 已提交
2369
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
2370

P
panqiangbiao 已提交
2371
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2372 2373 2374

**参数**

Z
zengyawen 已提交
2375
| 参数名  | 类型                                     | 必填 | 说明           |
Z
zengyawen 已提交
2376
| ------- | ---------------------------------------- | ---- | -------------- |
Z
zengyawen 已提交
2377
| options | [MediaFetchOptions](#mediafetchoptions7) | 否   | 媒体检索选项。 |
P
panqiangbiao 已提交
2378 2379 2380

**返回值**

Z
zengyawen 已提交
2381 2382
| 类型                                          | 说明                      |
| --------------------------------------------- | ------------------------- |
Z
zengyawen 已提交
2383
| Promise<[FetchFileResult](#fetchfileresult7)> | 返回FetchFileResult对象。 |
P
panqiangbiao 已提交
2384 2385 2386

**示例**

2387
```js
P
panqiangbiao 已提交
2388
async function example() {
P
panqiangbiao 已提交
2389 2390 2391 2392
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
Z
zhang-daiyue 已提交
2393 2394 2395 2396
    let fileNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
    }
P
panqiangbiao 已提交
2397 2398 2399 2400 2401 2402 2403 2404
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.getFileAssets(fileNoArgsfetchOp).then(function(albumFetchFileResult){
        console.info("getFileAssets successfully:"+ JSON.stringify(albumFetchFileResult));
    }).catch(function(err){
        console.info("getFileAssets failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
2405 2406
```

P
panqiangbiao 已提交
2407
## PeerInfo<sup>8+</sup>
P
panqiangbiao 已提交
2408

P
panqiangbiao 已提交
2409
注册设备的信息。
2410 2411

**系统接口**:此接口为系统接口。
P
panqiangbiao 已提交
2412

Z
zhang-daiyue 已提交
2413
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.DistributedCore
Z
zengyawen 已提交
2414

Z
zengyawen 已提交
2415 2416 2417 2418 2419 2420
| 名称       | 类型                       | 可读 | 可写 | 说明             |
| ---------- | -------------------------- | ---- | ---- | ---------------- |
| deviceName | string                     | 是   | 否   | 注册设备的名称   |
| networkId  | string                     | 是   | 否   | 注册设备的网络ID |
| deviceType | [DeviceType](#devicetype8) | 是   | 否   | 设备类型         |
| isOnline   | boolean                    | 是   | 否   | 是否在线         |
P
panqiangbiao 已提交
2421 2422 2423



Z
zengyawen 已提交
2424
## MediaType<sup>8+</sup>
P
panqiangbiao 已提交
2425 2426 2427

枚举,媒体类型。

Z
zengyawen 已提交
2428 2429
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.Core

潘强标 已提交
2430 2431 2432 2433 2434 2435
| 名称  |  说明 |
| ----- |  ---- |
| FILE  |  文件 |
| IMAGE |  图片 |
| VIDEO |  视频 |
| AUDIO |  音频 |
P
panqiangbiao 已提交
2436

Z
zengyawen 已提交
2437
## FileKey<sup>8+</sup>
P
panqiangbiao 已提交
2438 2439 2440

枚举,文件关键信息。

Z
zengyawen 已提交
2441 2442
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.Core

Z
zengyawen 已提交
2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457
| 名称          | 默认值              | 说明                                                       |
| ------------- | ------------------- | ---------------------------------------------------------- |
| ID            | file_id             | 文件编号                                                   |
| RELATIVE_PATH | relative_path       | 相对公共目录路径                                           |
| DISPLAY_NAME  | display_name        | 显示名字                                                   |
| PARENT        | parent              | 父目录id                                                   |
| MIME_TYPE     | mime_type           | 文件扩展属性                                               |
| MEDIA_TYPE    | media_type          | 媒体类型                                                   |
| SIZE          | size                | 文件大小(单位:字节)                                     |
| DATE_ADDED    | date_added          | 添加日期(添加文件时间到1970年1月1日的秒数值)             |
| DATE_MODIFIED | date_modified       | 修改日期(修改文件时间到1970年1月1日的秒数值)             |
| DATE_TAKEN    | date_taken          | 拍摄日期(文件拍照时间到1970年1月1日的秒数值)             |
| TITLE         | title               | 文件标题                                                   |
| ARTIST        | artist              | 作者                                                       |
| AUDIOALBUM    | audio_album         | 专辑                                                       |
Z
zhang-daiyue 已提交
2458
| DURATION      | duration            | 持续时间(单位:毫秒)                                       |
Z
zengyawen 已提交
2459 2460
| WIDTH         | width               | 图片宽度(单位:像素)                                     |
| HEIGHT        | height              | 图片高度(单位:像素)                                     |
P
panqiangbiao 已提交
2461
| ORIENTATION   | orientation         | 图片显示方向,即顺时针旋转角度,如0,90,180。(单位:度) |
Z
zengyawen 已提交
2462 2463
| ALBUM_ID      | bucket_id           | 文件所归属的相册编号                                       |
| ALBUM_NAME    | bucket_display_name | 文件所归属相册名称                                         |
P
panqiangbiao 已提交
2464

Z
zengyawen 已提交
2465
## DirectoryType<sup>8+</sup>
P
panqiangbiao 已提交
2466 2467 2468

枚举,目录类型。

Z
zengyawen 已提交
2469 2470
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.Core

潘强标 已提交
2471 2472 2473 2474 2475 2476 2477 2478
| 名称          |  说明               |
| ------------- |  ------------------ |
| DIR_CAMERA    |  表示Camera文件路径 |
| DIR_VIDEO     |  表示视频路径       |
| DIR_IMAGE     |  表示图片路径       |
| DIR_AUDIO     |  表示音频路径       |
| DIR_DOCUMENTS |  表示文档路径       |
| DIR_DOWNLOAD  |  表示下载路径       |
P
panqiangbiao 已提交
2479

Z
zengyawen 已提交
2480
## DeviceType<sup>8+</sup>
P
panqiangbiao 已提交
2481 2482

枚举,设备类型。
2483 2484

**系统接口**:此接口为系统接口。
P
panqiangbiao 已提交
2485

Z
zhang-daiyue 已提交
2486
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.DistributedCore
Z
zengyawen 已提交
2487

潘强标 已提交
2488 2489 2490 2491 2492 2493 2494 2495 2496
| 名称         |  说明       |
| ------------ |  ---------- |
| TYPE_UNKNOWN |  未识别设备 |
| TYPE_LAPTOP  |  笔记本电脑 |
| TYPE_PHONE   |  手机       |
| TYPE_TABLET  |  平板电脑   |
| TYPE_WATCH   |  智能手表   |
| TYPE_CAR     |  车载设备   |
| TYPE_TV      |  电视设备   |
P
panqiangbiao 已提交
2497

Z
zengyawen 已提交
2498
## MediaFetchOptions<sup>7+</sup>
P
panqiangbiao 已提交
2499 2500 2501

检索条件。

Z
zengyawen 已提交
2502 2503
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.Core

Z
zengyawen 已提交
2504 2505
| 名称                    | 类型                | 可读 | 可写 | 必填 | 说明                                                         |
| ----------------------- | ------------------- | ---- | ---- | ---- | ------------------------------------------------------------ |
2506
| selections              | string              | 是   | 是   | 是   | 检索条件,使用[FileKey](#filekey8)中的枚举值作为检索条件的列名。示例:<br />selections: mediaLibrary.FileKey.MEDIA_TYPE + '= ? OR ' +mediaLibrary.FileKey.MEDIA_TYPE + '= ?', |
Z
zengyawen 已提交
2507
| selectionArgs           | Array&lt;string&gt; | 是   | 是   | 是   | 检索条件的值,对应selections中检索条件列的值。<br />示例:<br />selectionArgs: [mediaLibrary.MediaType.IMAGE.toString(), mediaLibrary.MediaType.VIDEO.toString()], |
Z
zhang-daiyue 已提交
2508
| order                   | string              | 是   | 是   | 否   | 检索结果排序方式,使用[FileKey](#filekey8)中的枚举值作为检索结果排序的列,可以用升序或降序排列。示例:<br />升序排列:order: mediaLibrary.FileKey.DATE_ADDED + " ASC"<br />降序排列:order: mediaLibrary.FileKey.DATE_ADDED + " DESC" |
Z
zengyawen 已提交
2509 2510 2511
| uri<sup>8+</sup>        | string              | 是   | 是   | 否   | 文件URI                                                      |
| networkId<sup>8+</sup>  | string              | 是   | 是   | 否   | 注册设备网络ID                                               |
| extendArgs<sup>8+</sup> | string              | 是   | 是   | 否   | 扩展的检索参数,目前没有扩展检索参数                         |
P
panqiangbiao 已提交
2512

P
panqiangbiao 已提交
2513
## Size<sup>8+</sup>
P
panqiangbiao 已提交
2514 2515

图片尺寸。
2516 2517

**系统能力:**  以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2518

H
HelloCrease 已提交
2519 2520 2521 2522
| 名称     | 类型     | 可读   | 可写   | 说明       |
| ------ | ------ | ---- | ---- | -------- |
| width  | number | 是    | 是    | 宽(单位:像素) |
| height | number | 是    | 是    | 高(单位:像素) |
P
panqiangbiao 已提交
2523

Z
update  
zengyawen 已提交
2524
## MediaAssetOption<sup>(deprecated)</sup>
P
panqiangbiao 已提交
2525 2526 2527

媒体资源选项。

Z
update  
zengyawen 已提交
2528
> **说明**: 从API Version 9开始废弃。
P
panqiangbiao 已提交
2529 2530 2531 2532

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


Z
zengyawen 已提交
2533 2534 2535 2536 2537
| 名称         | 类型   | 必填 | 描述                                                         |
| ------------ | ------ | ---- | ------------------------------------------------------------ |
| src          | string | 是   | 本地文件应用沙箱路径。                                       |
| mimeType     | string | 是   | 媒体MIME(Multipurpose&nbsp;Internet&nbsp;Mail&nbsp;Extensions)类型。<br/>包括:'image/\*'、'video/\*'、'audio/\*'、 'file\*'。 |
| relativePath | string | 否   | 自定义媒体资源保存位置,例:Pictures/ 不填则保存到默认路径。 <br/> image类型默认路径Pictures/ <br/> video类型默认路径Videos/ <br/> audio类型默认路径Audios/ <br/> file类型默认路径Documents/ 。 |
P
panqiangbiao 已提交
2538

Z
update  
zengyawen 已提交
2539
## MediaSelectOption<sup>(deprecated)</sup>
P
panqiangbiao 已提交
2540 2541 2542

媒体资源类型选项。

Z
update  
zengyawen 已提交
2543
> **说明**: 从API Version 9开始废弃。
P
panqiangbiao 已提交
2544 2545 2546

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

H
HelloCrease 已提交
2547 2548
| 名称    | 类型     | 必填   | 描述                   |
| ----- | ------ | ---- | -------------------- |
潘强标 已提交
2549
| type  | string | 是    | 媒体类型,包括:image, video, media,当前仅支持media类型 |
Z
zhang-daiyue 已提交
2550
| count | number | 是    | 媒体选择,count = 1表示单选,count大于1表示多选。            |
Z
zhang-daiyue 已提交
2551

2552