js-apis-medialibrary.md 89.3 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 38 39
var media = mediaLibrary.getMediaLibrary(this.context);
```

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

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

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

getMediaLibrary(): MediaLibrary

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

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

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

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

**返回值:**

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

**示例:**

```js
var media = mediaLibrary.getMediaLibrary();
```

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

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


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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

**返回值**

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

**示例:**

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

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

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

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

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

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

H
HelloCrease 已提交
161 162 163 164
| 参数名      | 类型                   | 必填   | 说明                                       |
| -------- | -------------------- | ---- | ---------------------------------------- |
| 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 已提交
165 166 167

**示例:**

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

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

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

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

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

H
HelloCrease 已提交
183 184 185 186
| 参数名      | 类型                   | 必填   | 说明                                       |
| -------- | -------------------- | ---- | ---------------------------------------- |
| 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 已提交
187 188 189

**示例:**

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

P
panqiangbiao 已提交
196
### createAsset <sup>8+</sup>
P
panqiangbiao 已提交
197

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**返回值**

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

**示例:**

259
```js
260 261 262 263 264 265
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 已提交
266 267
```

P
panqiangbiao 已提交
268
### getPublicDirectory<sup>8+</sup>
P
panqiangbiao 已提交
269

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

P
panqiangbiao 已提交
272
获取公共目录路径,使用callback方式返回结果。
P
panqiangbiao 已提交
273 274 275 276 277

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

**参数:**

Z
zengyawen 已提交
278 279 280 281
| 参数名   | 类型                             | 必填 | 说明                      |
| -------- | -------------------------------- | ---- | ------------------------- |
| type     | [DirectoryType](#directorytype8) | 是   | 公共目录类型              |
| callback | AsyncCallback&lt;string&gt;      | 是   | callback 返回公共目录路径 |
P
panqiangbiao 已提交
282 283 284

**示例:**

285
```js
P
panqiangbiao 已提交
286
let DIR_CAMERA = mediaLibrary.DirectoryType.DIR_CAMERA;
P
panqiangbiao 已提交
287
media.getPublicDirectory(DIR_CAMERA, (err, dicResult) => {
P
panqiangbiao 已提交
288
    if (dicResult == 'Camera/') {
P
panqiangbiao 已提交
289
        console.info('mediaLibraryTest : getPublicDirectory passed');
P
panqiangbiao 已提交
290
    } else {
P
panqiangbiao 已提交
291
        console.info('mediaLibraryTest : getPublicDirectory failed');
P
panqiangbiao 已提交
292 293 294 295
    }
});
```

P
panqiangbiao 已提交
296
### getPublicDirectory<sup>8+</sup>
P
panqiangbiao 已提交
297

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

P
panqiangbiao 已提交
300
获取公共目录路径,使用Promise方式返回结果。
P
panqiangbiao 已提交
301 302 303 304 305

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

**参数:**

Z
zengyawen 已提交
306 307 308
| 参数名 | 类型                             | 必填 | 说明         |
| ------ | -------------------------------- | ---- | ------------ |
| type   | [DirectoryType](#directorytype8) | 是   | 公共目录类型 |
P
panqiangbiao 已提交
309 310 311

**返回值:**

Z
zengyawen 已提交
312 313 314
| 类型             | 说明             |
| ---------------- | ---------------- |
| Promise\<string> | 返回公共目录路径 |
P
panqiangbiao 已提交
315 316 317

**示例:**

318
```js
P
panqiangbiao 已提交
319
async function example() {
P
panqiangbiao 已提交
320 321
    let DIR_CAMERA = mediaLibrary.DirectoryType.DIR_CAMERA;
    const dicResult = await media.getPublicDirectory(DIR_CAMERA);
P
panqiangbiao 已提交
322
    if (dicResult == 'Camera/') {
P
panqiangbiao 已提交
323 324 325 326
        console.info('MediaLibraryTest : getPublicDirectory');
    } else {
        console.info('MediaLibraryTest : getPublicDirectory failed');
    }
P
panqiangbiao 已提交
327 328 329
}
```

Z
zengyawen 已提交
330
### getAlbums<sup>7+</sup>
P
panqiangbiao 已提交
331

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

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

P
panqiangbiao 已提交
336
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
337

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

P
panqiangbiao 已提交
340 341
**参数**

Z
zengyawen 已提交
342 343 344 345
| 参数名   | 类型                                         | 必填 | 说明                        |
| -------- | -------------------------------------------- | ---- | --------------------------- |
| options  | [MediaFetchOptions](#mediafetchoptions7)     | 是   | 相册获取条件                |
| callback | AsyncCallback&lt;Array<[Album](#album7)>&gt; | 是   | 异步获取Album列表之后的回调 |
P
panqiangbiao 已提交
346 347 348

**示例:**

349
```js
P
panqiangbiao 已提交
350 351 352 353
let AlbumNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
};
潘强标 已提交
354
media.getAlbums(AlbumNoArgsfetchOp, (err, albumList) => {
P
panqiangbiao 已提交
355 356 357 358 359 360 361
    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 已提交
362
})
P
panqiangbiao 已提交
363 364
```

Z
zengyawen 已提交
365
### getAlbums<sup>7+</sup>
P
panqiangbiao 已提交
366

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

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

P
panqiangbiao 已提交
371
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
372

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

P
panqiangbiao 已提交
375 376
**参数:**

Z
zengyawen 已提交
377 378 379
| 参数名  | 类型                                     | 必填 | 说明         |
| ------- | ---------------------------------------- | ---- | ------------ |
| options | [MediaFetchOptions](#mediafetchoptions7) | 是   | 相册获取条件 |
P
panqiangbiao 已提交
380 381 382

**返回值:**

Z
zengyawen 已提交
383 384 385
| 类型                             | 说明          |
| -------------------------------- | ------------- |
| Promise<Array<[Album](#album7)>> | 返回Album列表 |
P
panqiangbiao 已提交
386 387 388

**示例:**

389
```js
P
panqiangbiao 已提交
390 391 392 393
let AlbumNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
};
潘强标 已提交
394
media.getAlbums(AlbumNoArgsfetchOp).then(function(albumList){
P
panqiangbiao 已提交
395 396 397 398
    console.info("getAlbums successfully:"+ JSON.stringify(albumList));
}).catch(function(err){
    console.info("getAlbums failed with error:"+ err);
});
P
panqiangbiao 已提交
399 400
```

P
panqiangbiao 已提交
401
### release<sup>8+</sup>
P
panqiangbiao 已提交
402

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

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

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

P
panqiangbiao 已提交
410 411
**参数:**

H
HelloCrease 已提交
412 413 414
| 参数名      | 类型                        | 必填   | 说明         |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调表示成功还是失败 |
P
panqiangbiao 已提交
415 416 417

**示例:**

418
```js
P
panqiangbiao 已提交
419
var media = mediaLibrary.getMediaLibrary(context);
P
panqiangbiao 已提交
420
media.release((err) => {
P
panqiangbiao 已提交
421
    // do something
P
panqiangbiao 已提交
422
});
P
panqiangbiao 已提交
423 424
```

P
panqiangbiao 已提交
425
### release<sup>8+</sup>
P
panqiangbiao 已提交
426

P
panqiangbiao 已提交
427
release(): Promise&lt;void&gt;
P
panqiangbiao 已提交
428

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

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

P
panqiangbiao 已提交
434 435
**返回值:**

H
HelloCrease 已提交
436 437
| 类型                  | 说明                   |
| ------------------- | -------------------- |
P
panqiangbiao 已提交
438
| Promise&lt;void&gt; | Promise实例,用于获取异步返回结果 |
P
panqiangbiao 已提交
439 440 441

**示例:**

442
```js
P
panqiangbiao 已提交
443
media.release()
P
panqiangbiao 已提交
444 445
```

Z
update  
zengyawen 已提交
446
### storeMediaAsset<sup>(deprecated)</sup>
P
panqiangbiao 已提交
447 448 449 450 451

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

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

Z
update  
zengyawen 已提交
452
> **说明**: 从API Version 9开始废弃。
P
panqiangbiao 已提交
453 454 455 456 457

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

**参数:**

H
HelloCrease 已提交
458 459 460 461
| 参数名      | 类型                                    | 必填   | 说明                      |
| -------- | ------------------------------------- | ---- | ----------------------- |
| option   | [MediaAssetOption](#mediaassetoption) | 是    | 媒体资源选项。                 |
| callback | AsyncCallback&lt;string&gt;           | 是    | 媒体资源保存回调,返回保存成功后得到的URI。 |
P
panqiangbiao 已提交
462 463 464

**示例:**

465
```js
P
panqiangbiao 已提交
466
let option = {
潘强标 已提交
467 468 469
    src : "/data/storage/el2/base/haps/entry/image.png",
    mimeType : "image/*",
    relativePath : "Pictures/"
P
panqiangbiao 已提交
470 471 472 473 474 475 476 477 478
};
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.
});
479
```
P
panqiangbiao 已提交
480 481


Z
update  
zengyawen 已提交
482
### storeMediaAsset<sup>(deprecated)</sup>
P
panqiangbiao 已提交
483 484 485 486 487

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

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

Z
update  
zengyawen 已提交
488
> **说明**: 从API Version 9开始废弃。
P
panqiangbiao 已提交
489 490 491 492 493

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

**参数:**

H
HelloCrease 已提交
494 495 496
| 参数名    | 类型                                    | 必填   | 说明      |
| ------ | ------------------------------------- | ---- | ------- |
| option | [MediaAssetOption](#mediaassetoption) | 是    | 媒体资源选项。 |
P
panqiangbiao 已提交
497 498 499

**返回值:**

H
HelloCrease 已提交
500 501
| 类型                    | 说明                           |
| --------------------- | ---------------------------- |
P
panqiangbiao 已提交
502 503 504 505
| Promise&lt;string&gt; | Promise实例,用于异步获取保存成功后得到的URI。 |

**示例:**

506
```js
P
panqiangbiao 已提交
507
let option = {
潘强标 已提交
508 509 510
    src : "/data/storage/el2/base/haps/entry/image.png",
    mimeType : "image/*",
    relativePath : "Pictures/"
P
panqiangbiao 已提交
511 512 513 514 515 516 517
};
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.");
});
518
```
P
panqiangbiao 已提交
519 520


Z
update  
zengyawen 已提交
521
### startImagePreview<sup>(deprecated)</sup>
P
panqiangbiao 已提交
522 523 524 525 526

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

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

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

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

**参数:**

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

**示例:**

541
```js
P
panqiangbiao 已提交
542
let images = [
潘强标 已提交
543 544
    "dataability:///media/xxxx/2",
    "dataability:///media/xxxx/3"
P
panqiangbiao 已提交
545
];
H
HelloCrease 已提交
546
/* 网络图片使用方式
P
panqiangbiao 已提交
547 548 549 550
let images = [
    "https://media.xxxx.com/image1.jpg",
    "https://media.xxxx.com/image2.jpg"
];
H
HelloCrease 已提交
551
*/
P
panqiangbiao 已提交
552 553 554 555 556 557 558 559
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.");
});
560
```
P
panqiangbiao 已提交
561 562


Z
update  
zengyawen 已提交
563
### startImagePreview<sup>(deprecated)</sup>
P
panqiangbiao 已提交
564 565 566 567 568

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

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

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

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

**参数:**

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

**示例:**

582
```js
P
panqiangbiao 已提交
583
let images = [
潘强标 已提交
584 585
    "dataability:///media/xxxx/2",
    "dataability:///media/xxxx/3"
P
panqiangbiao 已提交
586
];
H
HelloCrease 已提交
587
/* 网络图片使用方式
P
panqiangbiao 已提交
588 589 590 591
let images = [
    "https://media.xxxx.com/image1.jpg",
    "https://media.xxxx.com/image2.jpg"
];
H
HelloCrease 已提交
592
*/
P
panqiangbiao 已提交
593 594 595 596 597 598 599
mediaLibrary.getMediaLibrary().startImagePreview(images, (err) => {
    if (err) {
        console.log("An error occurred when previewing the images.");
        return;
    }
    console.log("Succeeded in previewing the images.");
});
600
```
P
panqiangbiao 已提交
601 602


Z
update  
zengyawen 已提交
603
### startImagePreview<sup>(deprecated)</sup>
P
panqiangbiao 已提交
604 605 606 607 608

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

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

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

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

**参数:**

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

**返回值:**

H
HelloCrease 已提交
622 623
| 类型                  | 说明                              |
| ------------------- | ------------------------------- |
P
panqiangbiao 已提交
624 625 626 627
| Promise&lt;void&gt; | Promise实例,用于异步获取预览结果,失败时返回错误信息。 |

**示例:**

628
```js
P
panqiangbiao 已提交
629
let images = [
潘强标 已提交
630 631
    "dataability:///media/xxxx/2",
    "dataability:///media/xxxx/3"
P
panqiangbiao 已提交
632
];
H
HelloCrease 已提交
633
/* 网络图片使用方式
P
panqiangbiao 已提交
634 635 636 637
let images = [
    "https://media.xxxx.com/image1.jpg",
    "https://media.xxxx.com/image2.jpg"
];
H
HelloCrease 已提交
638
*/
P
panqiangbiao 已提交
639 640 641 642 643 644
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.");
});
645
```
P
panqiangbiao 已提交
646 647


Z
update  
zengyawen 已提交
648
### startMediaSelect<sup>(deprecated)</sup>
P
panqiangbiao 已提交
649 650 651 652 653

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

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

654
> **说明**: <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 已提交
655 656 657 658 659

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

**参数:**

H
HelloCrease 已提交
660 661 662 663
| 参数名      | 类型                                       | 必填   | 说明                                   |
| -------- | ---------------------------------------- | ---- | ------------------------------------ |
| option   | [MediaSelectOption](#mediaselectoption)  | 是    | 媒体选择选项。                              |
| callback | AsyncCallback&lt;Array&lt;string&gt;&gt; | 是    | 媒体选择回调,返回选择的媒体URI(dataability://)列表。 |
P
panqiangbiao 已提交
664 665 666

**示例:**

667
```js
P
panqiangbiao 已提交
668
let option = {
Z
zhang-daiyue 已提交
669
    type : "media",
P
panqiangbiao 已提交
670 671 672 673 674 675 676 677 678 679
    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.
});
680
```
P
panqiangbiao 已提交
681 682


Z
update  
zengyawen 已提交
683
### startMediaSelect<sup>(deprecated)</sup>
P
panqiangbiao 已提交
684 685 686 687 688

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

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

689
> **说明**: <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 已提交
690 691 692 693 694

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

**参数:**

H
HelloCrease 已提交
695 696 697
| 参数名    | 类型                                      | 必填   | 说明      |
| ------ | --------------------------------------- | ---- | ------- |
| option | [MediaSelectOption](#mediaselectoption) | 是    | 媒体选择选项。 |
P
panqiangbiao 已提交
698 699 700

**返回值:**

H
HelloCrease 已提交
701 702
| 类型                                 | 说明                                       |
| ---------------------------------- | ---------------------------------------- |
P
panqiangbiao 已提交
703 704 705 706
| Promise&lt;Array&lt;string&gt;&gt; | Promise实例,用于异步获取选择的媒体URI(dataability://)列表。 |

**示例:**

707
```js
P
panqiangbiao 已提交
708
let option = {
Z
zhang-daiyue 已提交
709
    type : "media",
P
panqiangbiao 已提交
710 711 712 713 714 715 716 717 718
    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.");
});

719
```
P
panqiangbiao 已提交
720

Z
zengyawen 已提交
721
## FileAsset<sup>7+</sup>
P
panqiangbiao 已提交
722 723 724

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

Z
zengyawen 已提交
725 726 727
### 属性

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

Z
zengyawen 已提交
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
| 名称                      | 类型                     | 可读 | 可写 | 说明                                                   |
| ------------------------- | ------------------------ | ---- | ---- | ------------------------------------------------------ |
| 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  单位:度) |
潘强标 已提交
748
| duration<sup>8+</sup>     | number                   | 是   | 否   | 持续时间(单位:毫秒)                                   |
Z
zengyawen 已提交
749 750 751
| albumId                   | number                   | 是   | 否   | 文件所归属的相册编号                                   |
| albumUri<sup>8+</sup>     | string                   | 是   | 否   | 文件所归属相册uri                                      |
| albumName                 | string                   | 是   | 否   | 文件所归属相册名称                                     |
P
panqiangbiao 已提交
752 753 754


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

P
panqiangbiao 已提交
756
isDirectory(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
757 758 759

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

P
panqiangbiao 已提交
760
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
761

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

P
panqiangbiao 已提交
764 765
**参数:**

H
HelloCrease 已提交
766 767 768
| 参数名      | 类型                           | 必填   | 说明                  |
| -------- | ---------------------------- | ---- | ------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是    | 当前FileAsset是否是目录的回调 |
P
panqiangbiao 已提交
769 770 771

**示例:**

772
```js
P
panqiangbiao 已提交
773
async function example() {
Z
zhang-daiyue 已提交
774
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
775 776 777 778
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
779 780
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
781 782 783 784 785 786 787
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isDirectory((err, isDirectory) => {
        // do something
    });
}
P
panqiangbiao 已提交
788 789
```

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

P
panqiangbiao 已提交
792
isDirectory():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
793 794 795

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

P
panqiangbiao 已提交
796
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
797

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

P
panqiangbiao 已提交
800 801
**返回值:**

H
HelloCrease 已提交
802 803
| 类型                     | 说明                           |
| ---------------------- | ---------------------------- |
P
panqiangbiao 已提交
804
| Promise&lt;boolean&gt; | Promise实例,返回当前FileAsset是否是目录 |
P
panqiangbiao 已提交
805 806 807

**示例:**

808
```js
P
panqiangbiao 已提交
809
async function example() {
Z
zhang-daiyue 已提交
810
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
811 812 813 814
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
815 816
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
817 818 819 820 821 822 823 824 825
    };
    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 已提交
826 827
```

P
panqiangbiao 已提交
828
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
829

P
panqiangbiao 已提交
830
commitModify(callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
831 832 833

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

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

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

P
panqiangbiao 已提交
838 839
**参数:**

H
HelloCrease 已提交
840 841 842
| 参数名      | 类型                        | 必填   | 说明    |
| -------- | ------------------------- | ---- | ----- |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空 |
P
panqiangbiao 已提交
843 844 845

**示例:**

846
```js
P
panqiangbiao 已提交
847
async function example() {
Z
zhang-daiyue 已提交
848
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
849 850 851 852
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
853 854
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
855 856 857
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
P
panqiangbiao 已提交
858
    asset.title = 'newtitle';
P
panqiangbiao 已提交
859 860
    asset.commitModify(() => {
        console.info('commitModify success');   
P
panqiangbiao 已提交
861
    });
P
panqiangbiao 已提交
862
}
P
panqiangbiao 已提交
863 864
```

P
panqiangbiao 已提交
865
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
866

P
panqiangbiao 已提交
867
commitModify(): Promise&lt;void&gt;
P
panqiangbiao 已提交
868 869 870

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

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

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

P
panqiangbiao 已提交
875 876
**返回值:**

H
HelloCrease 已提交
877 878
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
879
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
880 881 882

**示例:**

883
```js
P
panqiangbiao 已提交
884
async function example() {
Z
zhang-daiyue 已提交
885
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
886 887 888 889
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
890 891
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
892 893 894
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
P
panqiangbiao 已提交
895
    asset.title = 'newtitle';
P
panqiangbiao 已提交
896 897
    asset.commitModify();
}
P
panqiangbiao 已提交
898 899
```

P
panqiangbiao 已提交
900
### open<sup>8+</sup>
P
panqiangbiao 已提交
901

P
panqiangbiao 已提交
902
open(mode: string, callback: AsyncCallback&lt;number&gt;): void
P
panqiangbiao 已提交
903 904 905

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

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

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

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

P
panqiangbiao 已提交
912 913
**参数**

H
HelloCrease 已提交
914 915 916 917
| 参数名      | 类型                          | 必填   | 说明                                  |
| -------- | --------------------------- | ---- | ----------------------------------- |
| mode     | string                      | 是    | 打开文件方式,如:'r'(只读), 'w'(只写), 'rw'(读写) |
| callback | AsyncCallback&lt;number&gt; | 是    | 回调返回文件句柄                            |
P
panqiangbiao 已提交
918 919 920

**示例:**

921
```js
P
panqiangbiao 已提交
922
async function example() {
P
panqiangbiao 已提交
923
    let mediaType = mediaLibrary.MediaType.IMAGE;
P
panqiangbiao 已提交
924 925
    let DIR_IMAGE = mediaLibrary.DirectoryType.DIR_IMAGE;
    const path = await media.getPublicDirectory(DIR_IMAGE);
Z
zhang-daiyue 已提交
926
    const asset = await media.createAsset(mediaType, "image00003.jpg", path);
P
panqiangbiao 已提交
927 928 929 930 931 932 933 934
    asset.open('rw', (openError, fd) => {
            if(fd > 0){
                asset.close(fd);
            }else{
                console.info('File Open Failed!' + openError);
            }
    });
}
P
panqiangbiao 已提交
935 936
```

P
panqiangbiao 已提交
937
### open<sup>8+</sup>
P
panqiangbiao 已提交
938

P
panqiangbiao 已提交
939
open(mode: string): Promise&lt;number&gt;
P
panqiangbiao 已提交
940 941 942

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

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

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

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

P
panqiangbiao 已提交
949 950
**参数:**

H
HelloCrease 已提交
951 952 953
| 参数名  | 类型     | 必填   | 说明                                  |
| ---- | ------ | ---- | ----------------------------------- |
| mode | string | 是    | 打开文件方式,如:'r'(只读), 'w'(只写), 'rw'(读写) |
P
panqiangbiao 已提交
954 955 956

**返回值:**

H
HelloCrease 已提交
957 958
| 类型                    | 说明            |
| --------------------- | ------------- |
P
panqiangbiao 已提交
959
| Promise&lt;number&gt; | Promise返回文件句柄 |
P
panqiangbiao 已提交
960 961 962

**示例:**

963
```js
P
panqiangbiao 已提交
964
async function example() {
P
panqiangbiao 已提交
965
    let mediaType = mediaLibrary.MediaType.IMAGE;
P
panqiangbiao 已提交
966 967
    let DIR_IMAGE = mediaLibrary.DirectoryType.DIR_IMAGE;
    const path = await media.getPublicDirectory(DIR_IMAGE);
Z
zhang-daiyue 已提交
968
    const asset = await media.createAsset(mediaType, "image00003.jpg", path);
P
panqiangbiao 已提交
969 970 971 972 973 974 975
    asset.open('rw')
        .then((fd) => {
            console.info('File fd!' + fd);
        })
        .catch((err) => {
            console.info('File err!' + err);
        });
P
panqiangbiao 已提交
976
}
P
panqiangbiao 已提交
977 978
```

P
panqiangbiao 已提交
979
### close<sup>8+</sup>
P
panqiangbiao 已提交
980

P
panqiangbiao 已提交
981
close(fd: number, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
982 983 984

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

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

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

P
panqiangbiao 已提交
989 990
**参数:**

H
HelloCrease 已提交
991 992 993 994
| 参数名      | 类型                        | 必填   | 说明    |
| -------- | ------------------------- | ---- | ----- |
| fd       | number                    | 是    | 文件描述符 |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空 |
P
panqiangbiao 已提交
995 996 997

**示例:**

998
```js
P
panqiangbiao 已提交
999
async function example() {
Z
zhang-daiyue 已提交
1000
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1001 1002 1003 1004
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1005 1006
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1007 1008 1009
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
Z
zhang-daiyue 已提交
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
    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 已提交
1023 1024
    });
}
P
panqiangbiao 已提交
1025 1026
```

P
panqiangbiao 已提交
1027
### close<sup>8+</sup>
P
panqiangbiao 已提交
1028

P
panqiangbiao 已提交
1029
close(fd: number): Promise&lt;void&gt;
P
panqiangbiao 已提交
1030 1031 1032

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

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

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

P
panqiangbiao 已提交
1037 1038
**参数:**

H
HelloCrease 已提交
1039 1040 1041
| 参数名  | 类型     | 必填   | 说明    |
| ---- | ------ | ---- | ----- |
| fd   | number | 是    | 文件描述符 |
P
panqiangbiao 已提交
1042 1043 1044

**返回值:**

H
HelloCrease 已提交
1045 1046
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
1047
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1048 1049 1050

**示例:**

1051
```js
P
panqiangbiao 已提交
1052
async function example() {
Z
zhang-daiyue 已提交
1053
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1054 1055 1056 1057
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1058 1059
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1060 1061 1062
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
Z
zhang-daiyue 已提交
1063 1064 1065 1066 1067 1068
    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 已提交
1069

Z
zhang-daiyue 已提交
1070 1071 1072 1073 1074 1075 1076
            } else {
                console.info("=======asset.close success====>");
            }
        });
    })
    .catch((err) => {
        console.info('File err!' + err);
P
panqiangbiao 已提交
1077 1078
    });
}
P
panqiangbiao 已提交
1079 1080
```

P
panqiangbiao 已提交
1081
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
1082

P
panqiangbiao 已提交
1083
getThumbnail(callback: AsyncCallback&lt;image.PixelMap&gt;): void
P
panqiangbiao 已提交
1084 1085 1086

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

P
panqiangbiao 已提交
1087
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1088

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

P
panqiangbiao 已提交
1091 1092
**参数:**

H
HelloCrease 已提交
1093 1094 1095
| 参数名      | 类型                                  | 必填   | 说明               |
| -------- | ----------------------------------- | ---- | ---------------- |
| callback | AsyncCallback&lt;image.PixelMap&gt; | 是    | 回调返回缩略图的PixelMap |
P
panqiangbiao 已提交
1096 1097 1098

**示例:**

1099
```js
P
panqiangbiao 已提交
1100
async function example() {
Z
zhang-daiyue 已提交
1101
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1102 1103 1104 1105
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1106 1107
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1108 1109 1110 1111
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail((err, pixelmap) => {
P
panqiangbiao 已提交
1112
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
1113 1114
    });
}
P
panqiangbiao 已提交
1115 1116
```

P
panqiangbiao 已提交
1117
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
1118

P
panqiangbiao 已提交
1119
getThumbnail(size: Size, callback: AsyncCallback&lt;image.PixelMap&gt;): void
P
panqiangbiao 已提交
1120 1121 1122

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

P
panqiangbiao 已提交
1123
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1124

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

P
panqiangbiao 已提交
1127 1128
**参数:**

H
HelloCrease 已提交
1129 1130 1131 1132
| 参数名      | 类型                                  | 必填   | 说明               |
| -------- | ----------------------------------- | ---- | ---------------- |
| size     | [Size](#size8)                      | 是    | 缩略图尺寸            |
| callback | AsyncCallback&lt;image.PixelMap&gt; | 是    | 回调返回缩略图的PixelMap |
P
panqiangbiao 已提交
1133 1134 1135

**示例:**

1136
```js
P
panqiangbiao 已提交
1137
async function example() {
Z
zhang-daiyue 已提交
1138
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1139 1140 1141 1142
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1143 1144
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1145
    };
Z
zhang-daiyue 已提交
1146
    let size = { width: 720, height: 720 };
P
panqiangbiao 已提交
1147 1148 1149
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail(size, (err, pixelmap) => {
P
panqiangbiao 已提交
1150
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
1151 1152
    });
}
P
panqiangbiao 已提交
1153 1154
```

P
panqiangbiao 已提交
1155
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
1156

P
panqiangbiao 已提交
1157
getThumbnail(size?: Size): Promise&lt;image.PixelMap&gt;
P
panqiangbiao 已提交
1158 1159 1160

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

P
panqiangbiao 已提交
1161
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1162

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

P
panqiangbiao 已提交
1165 1166
**参数:**

H
HelloCrease 已提交
1167 1168 1169
| 参数名  | 类型             | 必填   | 说明    |
| ---- | -------------- | ---- | ----- |
| size | [Size](#size8) | 否    | 缩略图尺寸 |
P
panqiangbiao 已提交
1170 1171 1172

**返回值:**

H
HelloCrease 已提交
1173 1174
| 类型                            | 说明                    |
| ----------------------------- | --------------------- |
P
panqiangbiao 已提交
1175
| Promise&lt;image.PixelMap&gt; | Promise返回缩略图的PixelMap |
P
panqiangbiao 已提交
1176 1177 1178

**示例:**

1179
```js
P
panqiangbiao 已提交
1180
async function example() {
Z
zhang-daiyue 已提交
1181
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1182 1183
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
潘强标 已提交
1184 1185 1186 1187
        selections: fileKeyObj.MEDIA_TYPE + '= ?',
        selectionArgs: [imageType.toString()],
        order: fileKeyObj.DATE_ADDED + " DESC",
        extendArgs: "",
P
panqiangbiao 已提交
1188
    };
Z
zhang-daiyue 已提交
1189
    let size = { width: 720, height: 720 };
P
panqiangbiao 已提交
1190 1191
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
潘强标 已提交
1192 1193
    asset.getThumbnail(size)
    .then((pixelmap) => {
P
panqiangbiao 已提交
1194
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
潘强标 已提交
1195 1196 1197
    })
    .catch((err) => {
        console.info('mediaLibraryTest : getThumbnail fail'+ err);
P
panqiangbiao 已提交
1198 1199
    });
}
P
panqiangbiao 已提交
1200 1201
```

P
panqiangbiao 已提交
1202
### favorite<sup>8+</sup>
P
panqiangbiao 已提交
1203

P
panqiangbiao 已提交
1204
favorite(isFavorite: boolean, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
1205 1206 1207

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

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

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

P
panqiangbiao 已提交
1212 1213
**参数:**

H
HelloCrease 已提交
1214 1215 1216 1217
| 参数名        | 类型                        | 必填   | 说明                                 |
| ---------- | ------------------------- | ---- | ---------------------------------- |
| isFavorite | boolean                   | 是    | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
| callback   | AsyncCallback&lt;void&gt; | 是    | 回调返回空                              |
P
panqiangbiao 已提交
1218 1219 1220

**示例:**

1221
```js
P
panqiangbiao 已提交
1222
async function example() {
Z
zhang-daiyue 已提交
1223
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1224 1225 1226 1227
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1228 1229
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1230 1231 1232 1233 1234 1235 1236
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.favorite(true,function(err){
        // do something
    });
}
P
panqiangbiao 已提交
1237 1238
```

P
panqiangbiao 已提交
1239
### favorite<sup>8+</sup>
P
panqiangbiao 已提交
1240

P
panqiangbiao 已提交
1241
favorite(isFavorite: boolean): Promise&lt;void&gt;
P
panqiangbiao 已提交
1242 1243 1244

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

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

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

P
panqiangbiao 已提交
1249 1250
**参数:**

H
HelloCrease 已提交
1251 1252 1253
| 参数名        | 类型      | 必填   | 说明                                 |
| ---------- | ------- | ---- | ---------------------------------- |
| isFavorite | boolean | 是    | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
P
panqiangbiao 已提交
1254 1255 1256

**返回值:**

H
HelloCrease 已提交
1257 1258
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
1259
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1260 1261 1262

**示例:**

1263
```js
P
panqiangbiao 已提交
1264
async function example() {
Z
zhang-daiyue 已提交
1265
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1266 1267 1268 1269
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1270 1271
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1272 1273 1274 1275 1276 1277 1278 1279 1280
    };
    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 已提交
1281 1282
```

P
panqiangbiao 已提交
1283
### isFavorite<sup>8+</sup>
P
panqiangbiao 已提交
1284

P
panqiangbiao 已提交
1285
isFavorite(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
1286 1287 1288

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

P
panqiangbiao 已提交
1289
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1290

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

P
panqiangbiao 已提交
1293 1294
**参数:**

H
HelloCrease 已提交
1295 1296 1297
| 参数名      | 类型                           | 必填   | 说明          |
| -------- | ---------------------------- | ---- | ----------- |
| callback | AsyncCallback&lt;boolean&gt; | 是    | 回调表示是否为收藏文件 |
P
panqiangbiao 已提交
1298 1299 1300

**示例:**

1301
```js
P
panqiangbiao 已提交
1302
async function example() {
Z
zhang-daiyue 已提交
1303
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1304 1305 1306 1307
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1308 1309
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
    };
    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 已提交
1321 1322
```

P
panqiangbiao 已提交
1323
### isFavorite<sup>8+</sup>
P
panqiangbiao 已提交
1324

P
panqiangbiao 已提交
1325
isFavorite():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
1326 1327 1328

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

P
panqiangbiao 已提交
1329
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1330

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

P
panqiangbiao 已提交
1333 1334
**返回值:**

H
HelloCrease 已提交
1335 1336
| 类型                     | 说明                 |
| ---------------------- | ------------------ |
P
panqiangbiao 已提交
1337
| Promise&lt;boolean&gt; | Promise回调表示是否是收藏文件 |
P
panqiangbiao 已提交
1338 1339 1340

**示例:**

1341
```js
P
panqiangbiao 已提交
1342
async function example() {
Z
zhang-daiyue 已提交
1343
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1344 1345 1346 1347
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1348 1349
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1350 1351 1352 1353 1354 1355 1356 1357 1358
    };
    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 已提交
1359 1360
```

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

A
AOL 已提交
1363
trash(isTrash: boolean, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
1364 1365 1366

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

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

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

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

P
panqiangbiao 已提交
1373 1374
**参数:**

H
HelloCrease 已提交
1375 1376 1377 1378
| 参数名      | 类型                        | 必填   | 说明        |
| -------- | ------------------------- | ---- | --------- |
| isTrash  | boolean                   | 是    | 是否设置为垃圾文件 |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空     |
P
panqiangbiao 已提交
1379 1380 1381

**示例:**

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

P
panqiangbiao 已提交
1401
### trash<sup>8+</sup>
P
panqiangbiao 已提交
1402

A
AOL 已提交
1403
trash(isTrash: boolean): Promise&lt;void&gt;
P
panqiangbiao 已提交
1404 1405 1406

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

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

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

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

P
panqiangbiao 已提交
1413 1414
**参数:**

H
HelloCrease 已提交
1415 1416 1417
| 参数名     | 类型      | 必填   | 说明        |
| ------- | ------- | ---- | --------- |
| isTrash | boolean | 是    | 是否设置为垃圾文件 |
P
panqiangbiao 已提交
1418 1419 1420

**返回值:**

H
HelloCrease 已提交
1421 1422
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
1423
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1424 1425 1426

**示例:**

1427
```js
P
panqiangbiao 已提交
1428
async function example() {
Z
zhang-daiyue 已提交
1429
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1430 1431 1432 1433
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1434 1435
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1436 1437 1438 1439 1440 1441 1442 1443 1444
    };
    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 已提交
1445 1446
```

P
panqiangbiao 已提交
1447
### isTrash<sup>8+</sup>
P
panqiangbiao 已提交
1448

P
panqiangbiao 已提交
1449
isTrash(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
1450 1451 1452

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

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

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

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

H
HelloCrease 已提交
1459 1460 1461
| 参数名      | 类型                           | 必填   | 说明              |
| -------- | ---------------------------- | ---- | --------------- |
| callback | AsyncCallback&lt;boolean&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
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isTrash(isTrashCallBack);
    function isTrashCallBack(err, isTrash) {
            if (isTrash == true) {
P
panqiangbiao 已提交
1480
                console.info('mediaLibraryTest : ASSET_CALLBACK ASSET_CALLBACK isTrash = ' + isTrash);
Z
zhang-daiyue 已提交
1481
                asset.trash(true, istrashCallBack);
P
panqiangbiao 已提交
1482 1483

            } else {
P
panqiangbiao 已提交
1484 1485
                console.info('mediaLibraryTest : ASSET_CALLBACK isTrash Unsuccessfull = ' + err);
                console.info('mediaLibraryTest : ASSET_CALLBACK isTrash : FAIL');
P
panqiangbiao 已提交
1486 1487

            }
P
panqiangbiao 已提交
1488
    }
P
panqiangbiao 已提交
1489
}
P
panqiangbiao 已提交
1490 1491
```

P
panqiangbiao 已提交
1492
### isTrash<sup>8+</sup>
P
panqiangbiao 已提交
1493

P
panqiangbiao 已提交
1494
isTrash():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
1495

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

P
panqiangbiao 已提交
1498
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1499

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

P
panqiangbiao 已提交
1502 1503
**返回值:**

H
HelloCrease 已提交
1504 1505
| 类型                  | 说明                   |
| ------------------- | -------------------- |
P
panqiangbiao 已提交
1506
| Promise&lt;void&gt; | Promise回调表示文件是否为垃圾文件 |
P
panqiangbiao 已提交
1507 1508 1509

**示例:**

1510
```js
P
panqiangbiao 已提交
1511
async function example() {
Z
zhang-daiyue 已提交
1512
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1513 1514 1515 1516
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1517 1518
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1519 1520 1521 1522 1523 1524 1525 1526 1527
    };
    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 已提交
1528 1529
```

1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762
### 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 |

**示例:**

```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(uri: string, callback: AsyncCallback<void>): void;

删除媒体文件资源

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

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

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

**参数:**

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

**示例:**

```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);
        }
    });
}
```

### 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(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(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)
        }
    })
}
```

Z
zengyawen 已提交
1763
## FetchFileResult<sup>7+</sup>
P
panqiangbiao 已提交
1764 1765 1766

文件检索结果集。

Z
zengyawen 已提交
1767
### getCount<sup>7+</sup>
P
panqiangbiao 已提交
1768

P
panqiangbiao 已提交
1769
getCount(): number
P
panqiangbiao 已提交
1770 1771 1772

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

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

P
panqiangbiao 已提交
1775 1776
**返回值**

H
HelloCrease 已提交
1777 1778
| 类型     | 说明       |
| ------ | -------- |
P
panqiangbiao 已提交
1779
| number | 检索到的文件总数 |
P
panqiangbiao 已提交
1780 1781 1782

**示例**

1783
```js
P
panqiangbiao 已提交
1784
async function example() {
Z
zhang-daiyue 已提交
1785 1786
    let fileKeyObj = mediaLibrary.FileKey
    let fileType = mediaLibrary.MediaType.FILE;
P
panqiangbiao 已提交
1787 1788 1789
    let getFileCountOneOp = {
        selections: fileKeyObj.MEDIA_TYPE + '= ?',
        selectionArgs: [fileType.toString()],
P
panqiangbiao 已提交
1790 1791
        order: fileKeyObj.DATE_ADDED + " DESC",
        extendArgs: "",
P
panqiangbiao 已提交
1792 1793 1794 1795
    };
    let fetchFileResult = await media.getFileAssets(getFileCountOneOp);
    const fetchCount = fetchFileResult.getCount();
}
P
panqiangbiao 已提交
1796 1797
```

Z
zengyawen 已提交
1798
### isAfterLast<sup>7+</sup>
P
panqiangbiao 已提交
1799

P
panqiangbiao 已提交
1800
isAfterLast(): boolean
P
panqiangbiao 已提交
1801 1802 1803

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

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

P
panqiangbiao 已提交
1806 1807
**返回值**

H
HelloCrease 已提交
1808 1809
| 类型      | 说明                                 |
| ------- | ---------------------------------- |
P
panqiangbiao 已提交
1810
| boolean | 当读到最后一条记录后,后续没有记录返回true,否则返回false。 |
P
panqiangbiao 已提交
1811 1812 1813

**示例**

1814
```js
P
panqiangbiao 已提交
1815
async function example() {
Z
zhang-daiyue 已提交
1816
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1817 1818 1819 1820
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1821 1822
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1823 1824 1825
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
1826
    console.info('mediaLibraryTest : count:' + fetchCount);
P
panqiangbiao 已提交
1827 1828 1829 1830
    let fileAsset = await fetchFileResult.getFirstObject();
    for (var i = 1; i < fetchCount; i++) {
            fileAsset = await fetchFileResult.getNextObject();
            if(i == fetchCount - 1) {
P
panqiangbiao 已提交
1831
              console.info('mediaLibraryTest : isLast');
P
panqiangbiao 已提交
1832
              var result = fetchFileResult.isAfterLast();
P
panqiangbiao 已提交
1833 1834
              console.info('mediaLibraryTest : isAfterLast:' + result);
              console.info('mediaLibraryTest : isAfterLast end');
P
panqiangbiao 已提交
1835
              fetchFileResult.close();
P
panqiangbiao 已提交
1836

P
panqiangbiao 已提交
1837 1838
            }
    }
P
panqiangbiao 已提交
1839
}
P
panqiangbiao 已提交
1840 1841
```

Z
zengyawen 已提交
1842
### close<sup>7+</sup>
P
panqiangbiao 已提交
1843

P
panqiangbiao 已提交
1844
close(): void
P
panqiangbiao 已提交
1845 1846 1847

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

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

P
panqiangbiao 已提交
1850 1851
**示例**

1852
```js
P
panqiangbiao 已提交
1853
async function example() {
Z
zhang-daiyue 已提交
1854
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1855 1856 1857 1858
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1859 1860
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1861 1862 1863 1864
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.close();
}
P
panqiangbiao 已提交
1865 1866
```

Z
zengyawen 已提交
1867
### getFirstObject<sup>7+</sup>
P
panqiangbiao 已提交
1868

P
panqiangbiao 已提交
1869
getFirstObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1870 1871 1872

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

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

P
panqiangbiao 已提交
1875 1876
**参数**

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

**示例**

1883
```js
P
panqiangbiao 已提交
1884
async function example() {
Z
zhang-daiyue 已提交
1885
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1886 1887 1888 1889
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1890 1891
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1892 1893
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
1894
    fetchFileResult.getFirstObject((err, fileAsset) => {
P
panqiangbiao 已提交
1895 1896 1897 1898
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
1899
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
1900 1901
    })
}
P
panqiangbiao 已提交
1902 1903
```

Z
zengyawen 已提交
1904
### getFirstObject<sup>7+</sup>
P
panqiangbiao 已提交
1905

P
panqiangbiao 已提交
1906
getFirstObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1907

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

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

P
panqiangbiao 已提交
1912 1913
**返回值**

Z
zengyawen 已提交
1914 1915
| 类型                                    | 说明                       |
| --------------------------------------- | -------------------------- |
Z
zengyawen 已提交
1916
| Promise&lt;[FileAsset](#fileasset7)&gt; | Promise方式返回FileAsset。 |
P
panqiangbiao 已提交
1917 1918 1919

**示例**

1920
```js
P
panqiangbiao 已提交
1921
async function example() {
Z
zhang-daiyue 已提交
1922
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1923 1924 1925 1926
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1927 1928
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1929 1930 1931 1932 1933 1934 1935 1936
    };
    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 已提交
1937 1938
```

Z
zengyawen 已提交
1939
### getNextObject<sup>7+</sup>
P
panqiangbiao 已提交
1940

P
panqiangbiao 已提交
1941
 getNextObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1942 1943 1944

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

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

P
panqiangbiao 已提交
1947 1948
**参数**

Z
zengyawen 已提交
1949 1950 1951
| 参数名    | 类型                                          | 必填 | 说明                                      |
| --------- | --------------------------------------------- | ---- | ----------------------------------------- |
| callbacke | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步返回结果集中下一个FileAsset之后的回调 |
P
panqiangbiao 已提交
1952 1953 1954

**示例**

1955
```js
P
panqiangbiao 已提交
1956
async function example() {
Z
zhang-daiyue 已提交
1957
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1958 1959 1960 1961
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1962 1963
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1964 1965
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
1966
    fetchFileResult.getNextObject((err, fileAsset) => {
P
panqiangbiao 已提交
1967 1968 1969 1970
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
1971
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
1972 1973
    })
}
P
panqiangbiao 已提交
1974 1975
```

Z
zengyawen 已提交
1976
### getNextObject<sup>7+</sup>
P
panqiangbiao 已提交
1977

P
panqiangbiao 已提交
1978
 getNextObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1979 1980 1981

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

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

P
panqiangbiao 已提交
1984 1985
**返回值**

Z
zengyawen 已提交
1986 1987 1988
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1989 1990 1991

**示例**

1992
```js
P
panqiangbiao 已提交
1993
async function example() {
Z
zhang-daiyue 已提交
1994
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1995 1996 1997 1998
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1999 2000
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2001 2002 2003
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
2004
    console.info('mediaLibraryTest : count:' + fetchCount);
Z
zhang-daiyue 已提交
2005
    let fileAsset = await fetchFileResult.getNextObject();
P
panqiangbiao 已提交
2006
}
P
panqiangbiao 已提交
2007 2008
```

Z
zengyawen 已提交
2009
### getLastObject<sup>7+</sup>
P
panqiangbiao 已提交
2010

P
panqiangbiao 已提交
2011
getLastObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
2012 2013 2014

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

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

P
panqiangbiao 已提交
2017 2018
**参数**

Z
zengyawen 已提交
2019 2020
| 参数名   | 类型                                          | 必填 | 说明                        |
| -------- | --------------------------------------------- | ---- | --------------------------- |
Z
zengyawen 已提交
2021
| callback | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
2022 2023 2024

**示例**

2025
```js
P
panqiangbiao 已提交
2026
async function example() {
Z
zhang-daiyue 已提交
2027
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2028 2029 2030 2031
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2032 2033
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2034 2035
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
2036
    fetchFileResult.getLastObject((err, fileAsset) => {
P
panqiangbiao 已提交
2037 2038 2039 2040
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
2041
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
2042 2043
    })
}
P
panqiangbiao 已提交
2044 2045
```

Z
zengyawen 已提交
2046
### getLastObject<sup>7+</sup>
P
panqiangbiao 已提交
2047

P
panqiangbiao 已提交
2048
getLastObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
2049 2050 2051

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

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

P
panqiangbiao 已提交
2054 2055
**返回值**

Z
zengyawen 已提交
2056 2057 2058
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
2059 2060 2061

**示例**

2062
```js
P
panqiangbiao 已提交
2063
async function example() {
Z
zhang-daiyue 已提交
2064
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2065 2066 2067 2068
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2069 2070
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2071 2072 2073 2074
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    let lastObject = await fetchFileResult.getLastObject();
}
P
panqiangbiao 已提交
2075 2076
```

Z
zengyawen 已提交
2077
### getPositionObject<sup>7+</sup>
P
panqiangbiao 已提交
2078

P
panqiangbiao 已提交
2079
getPositionObject(index: number, callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
2080 2081 2082

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

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

P
panqiangbiao 已提交
2085 2086
**参数**

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

**示例**

2094
```js
P
panqiangbiao 已提交
2095
async function example() {
Z
zhang-daiyue 已提交
2096
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2097 2098 2099 2100
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2101 2102
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2103 2104
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
2105
    fetchFileResult.getPositionObject(0, (err, fileAsset) => {
P
panqiangbiao 已提交
2106 2107 2108 2109
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
2110
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
2111 2112
    })
}
P
panqiangbiao 已提交
2113 2114
```

Z
zengyawen 已提交
2115
### getPositionObject<sup>7+</sup>
P
panqiangbiao 已提交
2116

P
panqiangbiao 已提交
2117
getPositionObject(index: number): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
2118 2119 2120

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

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

P
panqiangbiao 已提交
2123 2124
**参数**

Z
zengyawen 已提交
2125
| 参数名    | 类型     | 必填   | 说明             |
H
HelloCrease 已提交
2126 2127
| ----- | ------ | ---- | -------------- |
| index | number | 是    | 要获取的文件的索引,从0开始 |
P
panqiangbiao 已提交
2128 2129 2130

**返回值**

Z
zengyawen 已提交
2131 2132 2133
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
2134 2135 2136

**示例**

2137
```js
P
panqiangbiao 已提交
2138
async function example() {
Z
zhang-daiyue 已提交
2139
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2140 2141 2142 2143
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2144 2145
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2146 2147
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
2148
    fetchFileResult.getPositionObject(1) .then(function (fileAsset){
2149
        console.log('fileAsset.displayName : ' + fileAsset.displayName);
Z
zhang-daiyue 已提交
2150
    }).catch(function (err) {
2151
        console.info("getFileAssets failed with error:" + err);
Z
zhang-daiyue 已提交
2152
    });
P
panqiangbiao 已提交
2153
}
P
panqiangbiao 已提交
2154 2155
```

Z
zengyawen 已提交
2156
### getAllObject<sup>7+</sup>
P
panqiangbiao 已提交
2157

P
panqiangbiao 已提交
2158
getAllObject(callback: AsyncCallback&lt;Array&lt;FileAsset&gt;&gt;): void
P
panqiangbiao 已提交
2159 2160 2161

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

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

P
panqiangbiao 已提交
2164 2165
**参数**

Z
zengyawen 已提交
2166
| 参数名       | 类型                                       | 必填   | 说明                   |
H
HelloCrease 已提交
2167
| -------- | ---------------------------------------- | ---- | -------------------- |
Z
zengyawen 已提交
2168
| callback | AsyncCallback<Array<[FileAsset](#fileasset7)>> | 是    | 异步返回FileAsset列表之后的回调 |
P
panqiangbiao 已提交
2169 2170 2171

**示例**

2172
```js
P
panqiangbiao 已提交
2173
async function example() {
Z
zhang-daiyue 已提交
2174
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2175 2176 2177 2178
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2179 2180
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2181 2182
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
2183
    fetchFileResult.getAllObject((err, fileAsset) => {
P
panqiangbiao 已提交
2184 2185 2186 2187
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
2188
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
2189 2190
    })
}
P
panqiangbiao 已提交
2191 2192
```

Z
zengyawen 已提交
2193
### getAllObject<sup>7+</sup>
P
panqiangbiao 已提交
2194

P
panqiangbiao 已提交
2195
getAllObject(): Promise&lt;Array&lt;FileAsset&gt;&gt;
P
panqiangbiao 已提交
2196 2197 2198

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

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

P
panqiangbiao 已提交
2201 2202
**返回值**

Z
zengyawen 已提交
2203 2204 2205
| 类型                                     | 说明                  |
| ---------------------------------------- | --------------------- |
| Promise<Array<[FileAsset](#fileasset7)>> | 返回FileAsset对象列表 |
P
panqiangbiao 已提交
2206 2207 2208

**示例**

2209
```js
P
panqiangbiao 已提交
2210
async function example() {
Z
zhang-daiyue 已提交
2211
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
2212 2213 2214 2215
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
2216 2217
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
2218 2219 2220 2221
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    var data = fetchFileResult.getAllObject();
}
P
panqiangbiao 已提交
2222 2223
```

Z
zengyawen 已提交
2224
## Album<sup>7+</sup>
P
panqiangbiao 已提交
2225 2226 2227

实体相册

Z
zengyawen 已提交
2228
### 属性
P
panqiangbiao 已提交
2229

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

Z
zengyawen 已提交
2232
| 名称           | 类型    | 可读   | 可写   | 说明      |
H
HelloCrease 已提交
2233
| ------------ | ------ | ---- | ---- | ------- |
Z
zengyawen 已提交
2234 2235 2236
| albumId | number | 是    | 否    | 相册编号    |
| albumName | string | 是    | 是    | 相册名称    |
| albumUri<sup>8+</sup> | string | 是    | 否    | 相册Uri   |
H
HelloCrease 已提交
2237
| dateModified | number | 是    | 否    | 修改日期    |
Z
zengyawen 已提交
2238 2239 2240
| count<sup>8+</sup> | number | 是    | 否    | 相册中文件数量 |
| relativePath<sup>8+</sup> | string | 是    | 否    | 相对路径    |
| coverUri<sup>8+</sup> | string | 是    | 否    | 封面文件Uri |
P
panqiangbiao 已提交
2241

P
panqiangbiao 已提交
2242 2243 2244
### commitModify<sup>8+</sup>

commitModify(callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
2245 2246 2247

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

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

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

P
panqiangbiao 已提交
2252 2253
**参数**

Z
zengyawen 已提交
2254 2255 2256
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |
P
panqiangbiao 已提交
2257 2258 2259

**示例**

2260
```js
P
panqiangbiao 已提交
2261
async function example() {
P
panqiangbiao 已提交
2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276
    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 已提交
2277 2278
```

P
panqiangbiao 已提交
2279
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
2280

P
panqiangbiao 已提交
2281
commitModify(): Promise&lt;void&gt;
P
panqiangbiao 已提交
2282 2283 2284

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

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

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

P
panqiangbiao 已提交
2289 2290
**返回值**

H
HelloCrease 已提交
2291 2292
| 类型                  | 说明           |
| ------------------- | ------------ |
P
panqiangbiao 已提交
2293 2294 2295 2296
| Promise&lt;void&gt; | Promise调用返回空 |

**示例**

2297
```js
P
panqiangbiao 已提交
2298
async function example() {
P
panqiangbiao 已提交
2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311
    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 已提交
2312 2313
```

Z
zengyawen 已提交
2314
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
2315

P
panqiangbiao 已提交
2316
getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void
P
panqiangbiao 已提交
2317 2318 2319

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

P
panqiangbiao 已提交
2320
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
2321

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

P
panqiangbiao 已提交
2324 2325
**参数**

Z
zengyawen 已提交
2326
| 参数名   | 类型                                                | 必填 | 说明                                |
Z
zengyawen 已提交
2327
| -------- | --------------------------------------------------- | ---- | ----------------------------------- |
Z
zengyawen 已提交
2328 2329
| options  | [MediaFetchOptions](#mediafetchoptions7)            | 是   | 媒体检索选项。                      |
| callback | AsyncCallback<[FetchFileResult](#fetchfileresult7)> | 是   | 异步返回FetchFileResult之后的回调。 |
P
panqiangbiao 已提交
2330 2331 2332

**示例**

2333
```js
P
panqiangbiao 已提交
2334
async function example() {
P
panqiangbiao 已提交
2335 2336 2337 2338
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
Z
zhang-daiyue 已提交
2339 2340 2341 2342
    let fileNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
    }
P
panqiangbiao 已提交
2343 2344 2345 2346 2347 2348
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.getFileAssets(fileNoArgsfetchOp, getFileAssetsCallBack);
    function getFileAssetsCallBack(err, fetchFileResult) {
        // do something
    }
P
panqiangbiao 已提交
2349 2350 2351
}
```

Z
zengyawen 已提交
2352
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
2353

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

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

P
panqiangbiao 已提交
2358
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
2359

P
panqiangbiao 已提交
2360
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2361 2362 2363

**参数**

Z
zengyawen 已提交
2364
| 参数名  | 类型                                     | 必填 | 说明           |
Z
zengyawen 已提交
2365
| ------- | ---------------------------------------- | ---- | -------------- |
Z
zengyawen 已提交
2366
| options | [MediaFetchOptions](#mediafetchoptions7) | 否   | 媒体检索选项。 |
P
panqiangbiao 已提交
2367 2368 2369

**返回值**

Z
zengyawen 已提交
2370 2371
| 类型                                          | 说明                      |
| --------------------------------------------- | ------------------------- |
Z
zengyawen 已提交
2372
| Promise<[FetchFileResult](#fetchfileresult7)> | 返回FetchFileResult对象。 |
P
panqiangbiao 已提交
2373 2374 2375

**示例**

2376
```js
P
panqiangbiao 已提交
2377
async function example() {
P
panqiangbiao 已提交
2378 2379 2380 2381
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
Z
zhang-daiyue 已提交
2382 2383 2384 2385
    let fileNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
    }
P
panqiangbiao 已提交
2386 2387 2388 2389 2390 2391 2392 2393
    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 已提交
2394 2395
```

P
panqiangbiao 已提交
2396
## PeerInfo<sup>8+</sup>
P
panqiangbiao 已提交
2397

P
panqiangbiao 已提交
2398
注册设备的信息。
2399 2400

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

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

Z
zengyawen 已提交
2404 2405 2406 2407 2408 2409
| 名称       | 类型                       | 可读 | 可写 | 说明             |
| ---------- | -------------------------- | ---- | ---- | ---------------- |
| deviceName | string                     | 是   | 否   | 注册设备的名称   |
| networkId  | string                     | 是   | 否   | 注册设备的网络ID |
| deviceType | [DeviceType](#devicetype8) | 是   | 否   | 设备类型         |
| isOnline   | boolean                    | 是   | 否   | 是否在线         |
P
panqiangbiao 已提交
2410 2411 2412



Z
zengyawen 已提交
2413
## MediaType<sup>8+</sup>
P
panqiangbiao 已提交
2414 2415 2416

枚举,媒体类型。

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

潘强标 已提交
2419 2420 2421 2422 2423 2424
| 名称  |  说明 |
| ----- |  ---- |
| FILE  |  文件 |
| IMAGE |  图片 |
| VIDEO |  视频 |
| AUDIO |  音频 |
P
panqiangbiao 已提交
2425

Z
zengyawen 已提交
2426
## FileKey<sup>8+</sup>
P
panqiangbiao 已提交
2427 2428 2429

枚举,文件关键信息。

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

Z
zengyawen 已提交
2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446
| 名称          | 默认值              | 说明                                                       |
| ------------- | ------------------- | ---------------------------------------------------------- |
| 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 已提交
2447
| DURATION      | duration            | 持续时间(单位:毫秒)                                       |
Z
zengyawen 已提交
2448 2449
| WIDTH         | width               | 图片宽度(单位:像素)                                     |
| HEIGHT        | height              | 图片高度(单位:像素)                                     |
P
panqiangbiao 已提交
2450
| ORIENTATION   | orientation         | 图片显示方向,即顺时针旋转角度,如0,90,180。(单位:度) |
Z
zengyawen 已提交
2451 2452
| ALBUM_ID      | bucket_id           | 文件所归属的相册编号                                       |
| ALBUM_NAME    | bucket_display_name | 文件所归属相册名称                                         |
P
panqiangbiao 已提交
2453

Z
zengyawen 已提交
2454
## DirectoryType<sup>8+</sup>
P
panqiangbiao 已提交
2455 2456 2457

枚举,目录类型。

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

潘强标 已提交
2460 2461 2462 2463 2464 2465 2466 2467
| 名称          |  说明               |
| ------------- |  ------------------ |
| DIR_CAMERA    |  表示Camera文件路径 |
| DIR_VIDEO     |  表示视频路径       |
| DIR_IMAGE     |  表示图片路径       |
| DIR_AUDIO     |  表示音频路径       |
| DIR_DOCUMENTS |  表示文档路径       |
| DIR_DOWNLOAD  |  表示下载路径       |
P
panqiangbiao 已提交
2468

Z
zengyawen 已提交
2469
## DeviceType<sup>8+</sup>
P
panqiangbiao 已提交
2470 2471

枚举,设备类型。
2472 2473

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

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

潘强标 已提交
2477 2478 2479 2480 2481 2482 2483 2484 2485
| 名称         |  说明       |
| ------------ |  ---------- |
| TYPE_UNKNOWN |  未识别设备 |
| TYPE_LAPTOP  |  笔记本电脑 |
| TYPE_PHONE   |  手机       |
| TYPE_TABLET  |  平板电脑   |
| TYPE_WATCH   |  智能手表   |
| TYPE_CAR     |  车载设备   |
| TYPE_TV      |  电视设备   |
P
panqiangbiao 已提交
2486

Z
zengyawen 已提交
2487
## MediaFetchOptions<sup>7+</sup>
P
panqiangbiao 已提交
2488 2489 2490

检索条件。

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

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

P
panqiangbiao 已提交
2502
## Size<sup>8+</sup>
P
panqiangbiao 已提交
2503 2504

图片尺寸。
2505 2506

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

H
HelloCrease 已提交
2508 2509 2510 2511
| 名称     | 类型     | 可读   | 可写   | 说明       |
| ------ | ------ | ---- | ---- | -------- |
| width  | number | 是    | 是    | 宽(单位:像素) |
| height | number | 是    | 是    | 高(单位:像素) |
P
panqiangbiao 已提交
2512

Z
update  
zengyawen 已提交
2513
## MediaAssetOption<sup>(deprecated)</sup>
P
panqiangbiao 已提交
2514 2515 2516

媒体资源选项。

Z
update  
zengyawen 已提交
2517
> **说明**: 从API Version 9开始废弃。
P
panqiangbiao 已提交
2518 2519 2520 2521

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


Z
zengyawen 已提交
2522 2523 2524 2525 2526
| 名称         | 类型   | 必填 | 描述                                                         |
| ------------ | ------ | ---- | ------------------------------------------------------------ |
| 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 已提交
2527

Z
update  
zengyawen 已提交
2528
## MediaSelectOption<sup>(deprecated)</sup>
P
panqiangbiao 已提交
2529 2530 2531

媒体资源类型选项。

Z
update  
zengyawen 已提交
2532
> **说明**: 从API Version 9开始废弃。
P
panqiangbiao 已提交
2533 2534 2535

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

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

2541