js-apis-medialibrary.md 82.2 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
## 导入模块
P
panqiangbiao 已提交
7
```
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

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

P
panqiangbiao 已提交
19
**参数:** 
P
panqiangbiao 已提交
20

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

**返回值:**

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

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

```
var media = mediaLibrary.getMediaLibrary(this.context);
```

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

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

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

getMediaLibrary(): MediaLibrary

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

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

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

**返回值:**

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

**示例:**

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

P
panqiangbiao 已提交
67
## MediaLibrary
P
panqiangbiao 已提交
68

Z
zengyawen 已提交
69
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
70 71


P
panqiangbiao 已提交
72
getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void 
P
panqiangbiao 已提交
73 74 75

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

P
panqiangbiao 已提交
76
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
77

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

P
panqiangbiao 已提交
80 81
**参数:**

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

**示例:**

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

P
panqiangbiao 已提交
111
getFileAssets(options: MediaFetchOptions): Promise&lt;FetchFileResult&gt;
P
panqiangbiao 已提交
112 113 114

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

P
panqiangbiao 已提交
115
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
116

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

P
panqiangbiao 已提交
119 120
**参数:**

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

**返回值**

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

**示例:**

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

P
panqiangbiao 已提交
147
### on<sup>8+</sup>
P
panqiangbiao 已提交
148

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

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

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

P
panqiangbiao 已提交
155 156
**参数:**

H
HelloCrease 已提交
157 158 159 160
| 参数名      | 类型                   | 必填   | 说明                                       |
| -------- | -------------------- | ---- | ---------------------------------------- |
| 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 已提交
161 162 163 164

**示例:**

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

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

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

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

P
panqiangbiao 已提交
177 178
**参数:**

H
HelloCrease 已提交
179 180 181 182
| 参数名      | 类型                   | 必填   | 说明                                       |
| -------- | -------------------- | ---- | ---------------------------------------- |
| 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 已提交
183 184 185 186

**示例:**

```
潘强标 已提交
187
media.off('imageChange', () => {
P
panqiangbiao 已提交
188
    // stop listening success
P
panqiangbiao 已提交
189 190 191
})
```

P
panqiangbiao 已提交
192
### createAsset <sup>8+</sup>
P
panqiangbiao 已提交
193

P
panqiangbiao 已提交
194
createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
195 196 197

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

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

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

P
panqiangbiao 已提交
202 203
**参数:**

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

**示例:**

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

P
panqiangbiao 已提交
229
### createAsset<sup>8+</sup>
P
panqiangbiao 已提交
230

P
panqiangbiao 已提交
231
createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
232 233 234

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

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

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

P
panqiangbiao 已提交
239 240
**参数:**

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

**返回值**

Z
zengyawen 已提交
249 250 251
| 类型                     | 说明              |
| ------------------------ | ----------------- |
| [FileAsset](#fileasset7) | 媒体数据FileAsset |
P
panqiangbiao 已提交
252 253 254 255

**示例:**

```
P
panqiangbiao 已提交
256 257 258 259 260
async function example() {
    // 使用Promise方式创建Image类型文件
    let mediaType = mediaLibrary.MediaType.IMAGE;
    let DIR_IMAGE = mediaLibrary.DirectoryType.DIR_IMAGE;
    const path = await media.getPublicDirectory(DIR_IMAGE);
潘强标 已提交
261
    media.createAsset(mediaType, "image01.jpg", path + 'myPicture/').then (function (asset) {
P
panqiangbiao 已提交
262 263 264 265 266
        console.info("createAsset successfully:"+ JSON.stringify(asset));
    }).catch(function(err){
        console.info("createAsset failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
267 268
```

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

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

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

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

**参数:**

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

**示例:**

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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

**示例:**

```
P
panqiangbiao 已提交
444
media.release()
P
panqiangbiao 已提交
445 446
```

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

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

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

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

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

**参数:**

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

**示例:**

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


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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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


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

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

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

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

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

**参数:**

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

**示例:**

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


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

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

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

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

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

**参数:**

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

**示例:**

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


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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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


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

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

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

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

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

**参数:**

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

**示例:**

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


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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

  ```
let option = {
Z
zhang-daiyue 已提交
710
    type : "media",
P
panqiangbiao 已提交
711 712 713 714 715 716 717 718 719 720 721
    count : 2
};
mediaLibrary.getMediaLibrary().startMediaSelect(option).then((value) => {
    console.log("Media resources selected.");
    // Obtain the media selection value.
}).catch((err) => {
    console.log("An error occurred when selecting media resources.");
});

  ```

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

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

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

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

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


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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

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

**示例:**

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

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

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

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

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

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

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

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

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

H
HelloCrease 已提交
1460 1461 1462
| 参数名      | 类型                           | 必填   | 说明              |
| -------- | ---------------------------- | ---- | --------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是    | 回调返回表示文件是否为垃圾文件 |
P
panqiangbiao 已提交
1463 1464 1465 1466

**示例:**

```
P
panqiangbiao 已提交
1467
async function example() {
Z
zhang-daiyue 已提交
1468
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1469 1470 1471 1472
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1473 1474
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1475 1476 1477 1478 1479 1480
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isTrash(isTrashCallBack);
    function isTrashCallBack(err, isTrash) {
            if (isTrash == true) {
P
panqiangbiao 已提交
1481
                console.info('mediaLibraryTest : ASSET_CALLBACK ASSET_CALLBACK isTrash = ' + isTrash);
Z
zhang-daiyue 已提交
1482
                asset.trash(true, istrashCallBack);
P
panqiangbiao 已提交
1483 1484

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

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

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

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

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

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

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

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

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

**示例:**

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

Z
zengyawen 已提交
1531
## FetchFileResult<sup>7+</sup>
P
panqiangbiao 已提交
1532 1533 1534

文件检索结果集。

Z
zengyawen 已提交
1535
### getCount<sup>7+</sup>
P
panqiangbiao 已提交
1536

P
panqiangbiao 已提交
1537
getCount(): number
P
panqiangbiao 已提交
1538 1539 1540

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

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

P
panqiangbiao 已提交
1543 1544
**返回值**

H
HelloCrease 已提交
1545 1546
| 类型     | 说明       |
| ------ | -------- |
P
panqiangbiao 已提交
1547
| number | 检索到的文件总数 |
P
panqiangbiao 已提交
1548 1549 1550 1551

**示例**

```
P
panqiangbiao 已提交
1552
async function example() {
Z
zhang-daiyue 已提交
1553 1554
    let fileKeyObj = mediaLibrary.FileKey
    let fileType = mediaLibrary.MediaType.FILE;
P
panqiangbiao 已提交
1555 1556 1557
    let getFileCountOneOp = {
        selections: fileKeyObj.MEDIA_TYPE + '= ?',
        selectionArgs: [fileType.toString()],
P
panqiangbiao 已提交
1558 1559
        order: fileKeyObj.DATE_ADDED + " DESC",
        extendArgs: "",
P
panqiangbiao 已提交
1560 1561 1562 1563
    };
    let fetchFileResult = await media.getFileAssets(getFileCountOneOp);
    const fetchCount = fetchFileResult.getCount();
}
P
panqiangbiao 已提交
1564 1565
```

Z
zengyawen 已提交
1566
### isAfterLast<sup>7+</sup>
P
panqiangbiao 已提交
1567

P
panqiangbiao 已提交
1568
isAfterLast(): boolean
P
panqiangbiao 已提交
1569 1570 1571

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

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

P
panqiangbiao 已提交
1574 1575
**返回值**

H
HelloCrease 已提交
1576 1577
| 类型      | 说明                                 |
| ------- | ---------------------------------- |
P
panqiangbiao 已提交
1578
| boolean | 当读到最后一条记录后,后续没有记录返回true,否则返回false。 |
P
panqiangbiao 已提交
1579 1580 1581 1582

**示例**

```
P
panqiangbiao 已提交
1583
async function example() {
Z
zhang-daiyue 已提交
1584
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1585 1586 1587 1588
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1589 1590
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1591 1592 1593
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
1594
    console.info('mediaLibraryTest : count:' + fetchCount);
P
panqiangbiao 已提交
1595 1596 1597 1598
    let fileAsset = await fetchFileResult.getFirstObject();
    for (var i = 1; i < fetchCount; i++) {
            fileAsset = await fetchFileResult.getNextObject();
            if(i == fetchCount - 1) {
P
panqiangbiao 已提交
1599
              console.info('mediaLibraryTest : isLast');
P
panqiangbiao 已提交
1600
              var result = fetchFileResult.isAfterLast();
P
panqiangbiao 已提交
1601 1602
              console.info('mediaLibraryTest : isAfterLast:' + result);
              console.info('mediaLibraryTest : isAfterLast end');
P
panqiangbiao 已提交
1603
              fetchFileResult.close();
P
panqiangbiao 已提交
1604

P
panqiangbiao 已提交
1605 1606
            }
    }
P
panqiangbiao 已提交
1607
}
P
panqiangbiao 已提交
1608 1609
```

Z
zengyawen 已提交
1610
### close<sup>7+</sup>
P
panqiangbiao 已提交
1611

P
panqiangbiao 已提交
1612
close(): void
P
panqiangbiao 已提交
1613 1614 1615

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

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

P
panqiangbiao 已提交
1618 1619 1620
**示例**

```
P
panqiangbiao 已提交
1621
async function example() {
Z
zhang-daiyue 已提交
1622
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1623 1624 1625 1626
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1627 1628
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1629 1630 1631 1632
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.close();
}
P
panqiangbiao 已提交
1633 1634
```

Z
zengyawen 已提交
1635
### getFirstObject<sup>7+</sup>
P
panqiangbiao 已提交
1636

P
panqiangbiao 已提交
1637
getFirstObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1638 1639 1640

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

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

P
panqiangbiao 已提交
1643 1644
**参数**

Z
zengyawen 已提交
1645 1646 1647
| 参数名   | 类型                                          | 必填 | 说明                                        |
| -------- | --------------------------------------------- | ---- | ------------------------------------------- |
| callback | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步获取结果集中第一个FileAsset完成后的回调 |
P
panqiangbiao 已提交
1648 1649 1650 1651

**示例**

```
P
panqiangbiao 已提交
1652
async function example() {
Z
zhang-daiyue 已提交
1653
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1654 1655 1656 1657
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1658 1659
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1660 1661
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
1662
    fetchFileResult.getFirstObject((err, fileAsset) => {
P
panqiangbiao 已提交
1663 1664 1665 1666
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
1667
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
1668 1669
    })
}
P
panqiangbiao 已提交
1670 1671
```

Z
zengyawen 已提交
1672
### getFirstObject<sup>7+</sup>
P
panqiangbiao 已提交
1673

P
panqiangbiao 已提交
1674
getFirstObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1675

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

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

P
panqiangbiao 已提交
1680 1681
**返回值**

Z
zengyawen 已提交
1682 1683
| 类型                                    | 说明                       |
| --------------------------------------- | -------------------------- |
Z
zengyawen 已提交
1684
| Promise&lt;[FileAsset](#fileasset7)&gt; | Promise方式返回FileAsset。 |
P
panqiangbiao 已提交
1685 1686 1687 1688

**示例**

```
P
panqiangbiao 已提交
1689
async function example() {
Z
zhang-daiyue 已提交
1690
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1691 1692 1693 1694
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1695 1696
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1697 1698 1699 1700 1701 1702 1703 1704
    };
    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 已提交
1705 1706
```

Z
zengyawen 已提交
1707
### getNextObject<sup>7+</sup>
P
panqiangbiao 已提交
1708

P
panqiangbiao 已提交
1709
 getNextObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1710 1711 1712

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

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

P
panqiangbiao 已提交
1715 1716
**参数**

Z
zengyawen 已提交
1717 1718 1719
| 参数名    | 类型                                          | 必填 | 说明                                      |
| --------- | --------------------------------------------- | ---- | ----------------------------------------- |
| callbacke | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步返回结果集中下一个FileAsset之后的回调 |
P
panqiangbiao 已提交
1720 1721 1722 1723

**示例**

```
P
panqiangbiao 已提交
1724
async function example() {
Z
zhang-daiyue 已提交
1725
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1726 1727 1728 1729
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1730 1731
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1732 1733
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
1734
    fetchFileResult.getNextObject((err, fileAsset) => {
P
panqiangbiao 已提交
1735 1736 1737 1738
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
1739
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
1740 1741
    })
}
P
panqiangbiao 已提交
1742 1743
```

Z
zengyawen 已提交
1744
### getNextObject<sup>7+</sup>
P
panqiangbiao 已提交
1745

P
panqiangbiao 已提交
1746
 getNextObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1747 1748 1749

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

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

P
panqiangbiao 已提交
1752 1753
**返回值**

Z
zengyawen 已提交
1754 1755 1756
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1757 1758 1759 1760

**示例**

```
P
panqiangbiao 已提交
1761
async function example() {
Z
zhang-daiyue 已提交
1762
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1763 1764 1765 1766
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1767 1768
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1769 1770 1771
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
1772
    console.info('mediaLibraryTest : count:' + fetchCount);
Z
zhang-daiyue 已提交
1773
    let fileAsset = await fetchFileResult.getNextObject();
P
panqiangbiao 已提交
1774
}
P
panqiangbiao 已提交
1775 1776
```

Z
zengyawen 已提交
1777
### getLastObject<sup>7+</sup>
P
panqiangbiao 已提交
1778

P
panqiangbiao 已提交
1779
getLastObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1780 1781 1782

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

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

P
panqiangbiao 已提交
1785 1786
**参数**

Z
zengyawen 已提交
1787 1788
| 参数名   | 类型                                          | 必填 | 说明                        |
| -------- | --------------------------------------------- | ---- | --------------------------- |
Z
zengyawen 已提交
1789
| callback | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
1790 1791 1792 1793

**示例**

```
P
panqiangbiao 已提交
1794
async function example() {
Z
zhang-daiyue 已提交
1795
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1796 1797 1798 1799
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1800 1801
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1802 1803
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
1804
    fetchFileResult.getLastObject((err, fileAsset) => {
P
panqiangbiao 已提交
1805 1806 1807 1808
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
1809
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
1810 1811
    })
}
P
panqiangbiao 已提交
1812 1813
```

Z
zengyawen 已提交
1814
### getLastObject<sup>7+</sup>
P
panqiangbiao 已提交
1815

P
panqiangbiao 已提交
1816
getLastObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1817 1818 1819

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

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

P
panqiangbiao 已提交
1822 1823
**返回值**

Z
zengyawen 已提交
1824 1825 1826
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1827 1828 1829 1830

**示例**

```
P
panqiangbiao 已提交
1831
async function example() {
Z
zhang-daiyue 已提交
1832
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1833 1834 1835 1836
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1837 1838
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1839 1840 1841 1842
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    let lastObject = await fetchFileResult.getLastObject();
}
P
panqiangbiao 已提交
1843 1844
```

Z
zengyawen 已提交
1845
### getPositionObject<sup>7+</sup>
P
panqiangbiao 已提交
1846

P
panqiangbiao 已提交
1847
getPositionObject(index: number, callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1848 1849 1850

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

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

P
panqiangbiao 已提交
1853 1854
**参数**

Z
zengyawen 已提交
1855
| 参数名       | 类型                                       | 必填   | 说明                 |
H
HelloCrease 已提交
1856 1857
| -------- | ---------------------------------------- | ---- | ------------------ |
| index    | number                                   | 是    | 要获取的文件的索引,从0开始     |
Z
zengyawen 已提交
1858
| callback | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是    | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
1859 1860 1861 1862

**示例**

```
P
panqiangbiao 已提交
1863
async function example() {
Z
zhang-daiyue 已提交
1864
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1865 1866 1867 1868
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1869 1870
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1871 1872
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
1873
    fetchFileResult.getPositionObject(0, (err, fileAsset) => {
P
panqiangbiao 已提交
1874 1875 1876 1877
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
1878
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
1879 1880
    })
}
P
panqiangbiao 已提交
1881 1882
```

Z
zengyawen 已提交
1883
### getPositionObject<sup>7+</sup>
P
panqiangbiao 已提交
1884

P
panqiangbiao 已提交
1885
getPositionObject(index: number): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1886 1887 1888

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

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

P
panqiangbiao 已提交
1891 1892
**参数**

Z
zengyawen 已提交
1893
| 参数名    | 类型     | 必填   | 说明             |
H
HelloCrease 已提交
1894 1895
| ----- | ------ | ---- | -------------- |
| index | number | 是    | 要获取的文件的索引,从0开始 |
P
panqiangbiao 已提交
1896 1897 1898

**返回值**

Z
zengyawen 已提交
1899 1900 1901
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1902 1903 1904 1905

**示例**

```
P
panqiangbiao 已提交
1906
async function example() {
Z
zhang-daiyue 已提交
1907
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1908 1909 1910 1911
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1912 1913
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1914 1915
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
1916
    fetchFileResult.getPositionObject(1, (err, fileAsset) => {
P
panqiangbiao 已提交
1917 1918 1919 1920
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
1921
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
1922 1923
    })
}
P
panqiangbiao 已提交
1924 1925
```

Z
zengyawen 已提交
1926
### getAllObject<sup>7+</sup>
P
panqiangbiao 已提交
1927

P
panqiangbiao 已提交
1928
getAllObject(callback: AsyncCallback&lt;Array&lt;FileAsset&gt;&gt;): void
P
panqiangbiao 已提交
1929 1930 1931

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

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

P
panqiangbiao 已提交
1934 1935
**参数**

Z
zengyawen 已提交
1936
| 参数名       | 类型                                       | 必填   | 说明                   |
H
HelloCrease 已提交
1937
| -------- | ---------------------------------------- | ---- | -------------------- |
Z
zengyawen 已提交
1938
| callback | AsyncCallback<Array<[FileAsset](#fileasset7)>> | 是    | 异步返回FileAsset列表之后的回调 |
P
panqiangbiao 已提交
1939 1940 1941 1942

**示例**

```
P
panqiangbiao 已提交
1943
async function example() {
Z
zhang-daiyue 已提交
1944
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1945 1946 1947 1948
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1949 1950
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1951 1952
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
Z
zhang-daiyue 已提交
1953
    fetchFileResult.getAllObject((err, fileAsset) => {
P
panqiangbiao 已提交
1954 1955 1956 1957
       if (err) {
           console.error('Failed ');
           return;
       }
Z
zhang-daiyue 已提交
1958
       console.log('fileAsset.displayName : ' + fileAsset.displayName);
P
panqiangbiao 已提交
1959 1960
    })
}
P
panqiangbiao 已提交
1961 1962
```

Z
zengyawen 已提交
1963
### getAllObject<sup>7+</sup>
P
panqiangbiao 已提交
1964

P
panqiangbiao 已提交
1965
getAllObject(): Promise&lt;Array&lt;FileAsset&gt;&gt;
P
panqiangbiao 已提交
1966 1967 1968

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

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

P
panqiangbiao 已提交
1971 1972
**返回值**

Z
zengyawen 已提交
1973 1974 1975
| 类型                                     | 说明                  |
| ---------------------------------------- | --------------------- |
| Promise<Array<[FileAsset](#fileasset7)>> | 返回FileAsset对象列表 |
P
panqiangbiao 已提交
1976 1977 1978 1979

**示例**

```
P
panqiangbiao 已提交
1980
async function example() {
Z
zhang-daiyue 已提交
1981
    let fileKeyObj = mediaLibrary.FileKey
P
panqiangbiao 已提交
1982 1983 1984 1985
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1986 1987
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1988 1989 1990 1991
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    var data = fetchFileResult.getAllObject();
}
P
panqiangbiao 已提交
1992 1993
```

Z
zengyawen 已提交
1994
## Album<sup>7+</sup>
P
panqiangbiao 已提交
1995 1996 1997

实体相册

Z
zengyawen 已提交
1998
### 属性
P
panqiangbiao 已提交
1999

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

Z
zengyawen 已提交
2002
| 名称           | 类型    | 可读   | 可写   | 说明      |
H
HelloCrease 已提交
2003
| ------------ | ------ | ---- | ---- | ------- |
Z
zengyawen 已提交
2004 2005 2006
| albumId | number | 是    | 否    | 相册编号    |
| albumName | string | 是    | 是    | 相册名称    |
| albumUri<sup>8+</sup> | string | 是    | 否    | 相册Uri   |
H
HelloCrease 已提交
2007
| dateModified | number | 是    | 否    | 修改日期    |
Z
zengyawen 已提交
2008 2009 2010
| count<sup>8+</sup> | number | 是    | 否    | 相册中文件数量 |
| relativePath<sup>8+</sup> | string | 是    | 否    | 相对路径    |
| coverUri<sup>8+</sup> | string | 是    | 否    | 封面文件Uri |
P
panqiangbiao 已提交
2011

P
panqiangbiao 已提交
2012 2013 2014
### commitModify<sup>8+</sup>

commitModify(callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
2015 2016 2017

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

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

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

P
panqiangbiao 已提交
2022 2023
**参数**

Z
zengyawen 已提交
2024 2025 2026
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |
P
panqiangbiao 已提交
2027 2028 2029 2030

**示例**

```
P
panqiangbiao 已提交
2031
async function example() {
P
panqiangbiao 已提交
2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046
    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 已提交
2047 2048
```

P
panqiangbiao 已提交
2049
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
2050

P
panqiangbiao 已提交
2051
commitModify(): Promise&lt;void&gt;
P
panqiangbiao 已提交
2052 2053 2054

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

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

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

P
panqiangbiao 已提交
2059 2060
**返回值**

H
HelloCrease 已提交
2061 2062
| 类型                  | 说明           |
| ------------------- | ------------ |
P
panqiangbiao 已提交
2063 2064 2065 2066 2067
| Promise&lt;void&gt; | Promise调用返回空 |

**示例**

```
P
panqiangbiao 已提交
2068
async function example() {
P
panqiangbiao 已提交
2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081
    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 已提交
2082 2083
```

Z
zengyawen 已提交
2084
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
2085

P
panqiangbiao 已提交
2086
getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void
P
panqiangbiao 已提交
2087 2088 2089

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

P
panqiangbiao 已提交
2090
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
2091

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

P
panqiangbiao 已提交
2094 2095
**参数**

Z
zengyawen 已提交
2096
| 参数名   | 类型                                                | 必填 | 说明                                |
Z
zengyawen 已提交
2097
| -------- | --------------------------------------------------- | ---- | ----------------------------------- |
Z
zengyawen 已提交
2098 2099
| options  | [MediaFetchOptions](#mediafetchoptions7)            | 是   | 媒体检索选项。                      |
| callback | AsyncCallback<[FetchFileResult](#fetchfileresult7)> | 是   | 异步返回FetchFileResult之后的回调。 |
P
panqiangbiao 已提交
2100 2101 2102 2103

**示例**

```
P
panqiangbiao 已提交
2104
async function example() {
P
panqiangbiao 已提交
2105 2106 2107 2108
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
Z
zhang-daiyue 已提交
2109 2110 2111 2112
    let fileNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
    }
P
panqiangbiao 已提交
2113 2114 2115 2116 2117 2118
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.getFileAssets(fileNoArgsfetchOp, getFileAssetsCallBack);
    function getFileAssetsCallBack(err, fetchFileResult) {
        // do something
    }
P
panqiangbiao 已提交
2119 2120 2121
}
```

Z
zengyawen 已提交
2122
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
2123

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

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

P
panqiangbiao 已提交
2128
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
2129

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

**参数**

Z
zengyawen 已提交
2134
| 参数名  | 类型                                     | 必填 | 说明           |
Z
zengyawen 已提交
2135
| ------- | ---------------------------------------- | ---- | -------------- |
Z
zengyawen 已提交
2136
| options | [MediaFetchOptions](#mediafetchoptions7) | 否   | 媒体检索选项。 |
P
panqiangbiao 已提交
2137 2138 2139

**返回值**

Z
zengyawen 已提交
2140 2141
| 类型                                          | 说明                      |
| --------------------------------------------- | ------------------------- |
Z
zengyawen 已提交
2142
| Promise<[FetchFileResult](#fetchfileresult7)> | 返回FetchFileResult对象。 |
P
panqiangbiao 已提交
2143 2144 2145 2146

**示例**

```
P
panqiangbiao 已提交
2147
async function example() {
P
panqiangbiao 已提交
2148 2149 2150 2151
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
Z
zhang-daiyue 已提交
2152 2153 2154 2155
    let fileNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
    }
P
panqiangbiao 已提交
2156 2157 2158 2159 2160 2161 2162 2163
    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 已提交
2164 2165
```

P
panqiangbiao 已提交
2166
## PeerInfo<sup>8+</sup>
P
panqiangbiao 已提交
2167

P
panqiangbiao 已提交
2168
注册设备的信息。
Z
zhang-daiyue 已提交
2169
此接口为系统接口。
P
panqiangbiao 已提交
2170

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

Z
zengyawen 已提交
2173 2174 2175 2176 2177 2178
| 名称       | 类型                       | 可读 | 可写 | 说明             |
| ---------- | -------------------------- | ---- | ---- | ---------------- |
| deviceName | string                     | 是   | 否   | 注册设备的名称   |
| networkId  | string                     | 是   | 否   | 注册设备的网络ID |
| deviceType | [DeviceType](#devicetype8) | 是   | 否   | 设备类型         |
| isOnline   | boolean                    | 是   | 否   | 是否在线         |
P
panqiangbiao 已提交
2179 2180 2181



Z
zengyawen 已提交
2182
## MediaType<sup>8+</sup>
P
panqiangbiao 已提交
2183 2184 2185

枚举,媒体类型。

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

潘强标 已提交
2188 2189 2190 2191 2192 2193
| 名称  |  说明 |
| ----- |  ---- |
| FILE  |  文件 |
| IMAGE |  图片 |
| VIDEO |  视频 |
| AUDIO |  音频 |
P
panqiangbiao 已提交
2194

Z
zengyawen 已提交
2195
## FileKey<sup>8+</sup>
P
panqiangbiao 已提交
2196 2197 2198

枚举,文件关键信息。

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

Z
zengyawen 已提交
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215
| 名称          | 默认值              | 说明                                                       |
| ------------- | ------------------- | ---------------------------------------------------------- |
| 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 已提交
2216
| DURATION      | duration            | 持续时间(单位:毫秒)                                       |
Z
zengyawen 已提交
2217 2218
| WIDTH         | width               | 图片宽度(单位:像素)                                     |
| HEIGHT        | height              | 图片高度(单位:像素)                                     |
P
panqiangbiao 已提交
2219
| ORIENTATION   | orientation         | 图片显示方向,即顺时针旋转角度,如0,90,180。(单位:度) |
Z
zengyawen 已提交
2220 2221
| ALBUM_ID      | bucket_id           | 文件所归属的相册编号                                       |
| ALBUM_NAME    | bucket_display_name | 文件所归属相册名称                                         |
P
panqiangbiao 已提交
2222

Z
zengyawen 已提交
2223
## DirectoryType<sup>8+</sup>
P
panqiangbiao 已提交
2224 2225 2226

枚举,目录类型。

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

潘强标 已提交
2229 2230 2231 2232 2233 2234 2235 2236
| 名称          |  说明               |
| ------------- |  ------------------ |
| DIR_CAMERA    |  表示Camera文件路径 |
| DIR_VIDEO     |  表示视频路径       |
| DIR_IMAGE     |  表示图片路径       |
| DIR_AUDIO     |  表示音频路径       |
| DIR_DOCUMENTS |  表示文档路径       |
| DIR_DOWNLOAD  |  表示下载路径       |
P
panqiangbiao 已提交
2237

Z
zengyawen 已提交
2238
## DeviceType<sup>8+</sup>
P
panqiangbiao 已提交
2239 2240

枚举,设备类型。
Z
zhang-daiyue 已提交
2241
此接口为系统接口。
P
panqiangbiao 已提交
2242

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

潘强标 已提交
2245 2246 2247 2248 2249 2250 2251 2252 2253
| 名称         |  说明       |
| ------------ |  ---------- |
| TYPE_UNKNOWN |  未识别设备 |
| TYPE_LAPTOP  |  笔记本电脑 |
| TYPE_PHONE   |  手机       |
| TYPE_TABLET  |  平板电脑   |
| TYPE_WATCH   |  智能手表   |
| TYPE_CAR     |  车载设备   |
| TYPE_TV      |  电视设备   |
P
panqiangbiao 已提交
2254

Z
zengyawen 已提交
2255
## MediaFetchOptions<sup>7+</sup>
P
panqiangbiao 已提交
2256 2257 2258

检索条件。

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

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

P
panqiangbiao 已提交
2270
## Size<sup>8+</sup>
P
panqiangbiao 已提交
2271 2272

图片尺寸。
Z
zhang-daiyue 已提交
2273
系统能力: 以下各项对应的系统能力均为SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2274

H
HelloCrease 已提交
2275 2276 2277 2278
| 名称     | 类型     | 可读   | 可写   | 说明       |
| ------ | ------ | ---- | ---- | -------- |
| width  | number | 是    | 是    | 宽(单位:像素) |
| height | number | 是    | 是    | 高(单位:像素) |
P
panqiangbiao 已提交
2279

Z
update  
zengyawen 已提交
2280
## MediaAssetOption<sup>(deprecated)</sup>
P
panqiangbiao 已提交
2281 2282 2283

媒体资源选项。

Z
update  
zengyawen 已提交
2284
> **说明**: 从API Version 9开始废弃。
P
panqiangbiao 已提交
2285 2286 2287 2288

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


Z
zengyawen 已提交
2289 2290 2291 2292 2293
| 名称         | 类型   | 必填 | 描述                                                         |
| ------------ | ------ | ---- | ------------------------------------------------------------ |
| 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 已提交
2294

Z
update  
zengyawen 已提交
2295
## MediaSelectOption<sup>(deprecated)</sup>
P
panqiangbiao 已提交
2296 2297 2298

媒体资源类型选项。

Z
update  
zengyawen 已提交
2299
> **说明**: 从API Version 9开始废弃。
P
panqiangbiao 已提交
2300 2301 2302

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

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