js-apis-medialibrary.md 64.0 KB
Newer Older
P
panqiangbiao 已提交
1 2
媒体库管理
==========
P
panqiangbiao 已提交
3 4
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 该组件从API Version 6开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
P
panqiangbiao 已提交
5

P
panqiangbiao 已提交
6 7 8 9
 导入模块
---------

```
P
panqiangbiao 已提交
10
import mediaLibrary from '@ohos.multimedia.medialibrary';
P
panqiangbiao 已提交
11 12 13 14
```

## getMediaLibrary

P
panqiangbiao 已提交
15
function getMediaLibrary(context: Context): MediaLibrary
P
panqiangbiao 已提交
16

P
panqiangbiao 已提交
17
获取媒体库的实例,用于访问和修改用户的个人数据信息。
P
panqiangbiao 已提交
18

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

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

| 参数名  | 类型    | 必填 | 说明                 |
| ------- | ------- | ---- | -------------------- |
P
panqiangbiao 已提交
25
| context | Context | 是 | API7以下接口可不传此参数,API 8以上接口此参数是必填参数,传入Ability实例的context,获取媒体库 |
P
panqiangbiao 已提交
26 27 28 29 30

**返回值:**

| 类型         | 说明   |
| ------------ | :----- |
P
panqiangbiao 已提交
31
| [MediaLibrary](#MediaLibrary) | 媒体库实例 |
P
panqiangbiao 已提交
32 33 34 35

**示例:**

```
P
panqiangbiao 已提交
36
import featureAbility from '@ohos.ability.featureAbility';
P
panqiangbiao 已提交
37

P
panqiangbiao 已提交
38
var context = featureAbility.getContext()
P
panqiangbiao 已提交
39
var media = mediaLibrary.getMediaLibrary(context);
P
panqiangbiao 已提交
40
```
P
panqiangbiao 已提交
41
## MediaLibrary
P
panqiangbiao 已提交
42

P
panqiangbiao 已提交
43
### getFileAssets<sup>8+</sup>
P
panqiangbiao 已提交
44 45


P
panqiangbiao 已提交
46
getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void 
P
panqiangbiao 已提交
47 48 49

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

P
panqiangbiao 已提交
50
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
51

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

P
panqiangbiao 已提交
54 55
**参数:**

P
panqiangbiao 已提交
56 57 58 59
| 参数名   | 类型                                         | 必填 | 说明                              |
| -------- | -------------------------------------------- | ---- | --------------------------------- |
| options  | [MediaFetchOptions](#mediafetchoptions8)     | 是   | 媒体获取选项                      |
| callback | AsyncCallback<[FetchFileResult](#fetchfileresult8)> | 是   | 异步获取FetchFileResult之后的回调 |
P
panqiangbiao 已提交
60 61 62 63

**示例:**

```
P
panqiangbiao 已提交
64 65 66 67 68 69
let fileKeyObj = mediaLibrary.FileKey
let imageType = mediaLibrary.MediaType.IMAGE
let imagesfetchOp = {
    selections: fileKeyObj.MEDIA_TYPE + '= ?',
    selectionArgs: [imageType.toString()],
};
P
panqiangbiao 已提交
70
mediaLibrary.getFileAssets(imagesfetchOp, (error, fetchFileResult) => {
P
panqiangbiao 已提交
71
    if (fetchFileResult != undefined) {
P
panqiangbiao 已提交
72
        console.info('mediaLibraryTest : ASSET_CALLBACK fetchFileResult success');
P
panqiangbiao 已提交
73 74 75 76
        fetchFileResult.getAllObject((err, fileAssetList) => {
            if (fileAssetList != undefined) {
                fileAssetList.forEach(getAllObjectInfo);
            }
P
panqiangbiao 已提交
77 78
    	});
    }
P
panqiangbiao 已提交
79
});
P
panqiangbiao 已提交
80
```
P
panqiangbiao 已提交
81
### getFileAssets<sup>8+</sup>
P
panqiangbiao 已提交
82

P
panqiangbiao 已提交
83
getFileAssets(options: MediaFetchOptions): Promise&lt;FetchFileResult&gt;
P
panqiangbiao 已提交
84 85 86

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

P
panqiangbiao 已提交
87
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
88

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

P
panqiangbiao 已提交
91 92
**参数:**

P
panqiangbiao 已提交
93 94 95
| 参数名  | 类型                                     | 必填 | 说明         |
| ------- | ---------------------------------------- | ---- | ------------ |
| options | [MediaFetchOptions](#mediafetchoptions8) | 是   | 媒体检索选项 |
P
panqiangbiao 已提交
96 97 98

**返回值**

P
panqiangbiao 已提交
99 100 101
| 类型                          | 说明           |
| ----------------------------- | -------------- |
| [FetchFileResult](#fetchfileresult8) | 媒体数据结果集 |
P
panqiangbiao 已提交
102 103 104 105

**示例:**

```
P
panqiangbiao 已提交
106 107 108 109 110 111
let fileKeyObj = mediaLibrary.FileKey
let imageType = mediaLibrary.MediaType.IMAGE
let imagesfetchOp = {
    selections: fileKeyObj.MEDIA_TYPE + '= ?',
    selectionArgs: [imageType.toString()],
};
P
panqiangbiao 已提交
112
mediaLibrary.getFileAssets(imagesfetchOp).then(function(fetchFileResult){
P
panqiangbiao 已提交
113 114 115 116
    console.info("getFileAssets successfully:"+ JSON.stringify(dir));
}).catch(function(err){
    console.info("getFileAssets failed with error:"+ err);
});
P
panqiangbiao 已提交
117 118
```

P
panqiangbiao 已提交
119
### on<sup>8+</sup>
P
panqiangbiao 已提交
120

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

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

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

P
panqiangbiao 已提交
127 128 129 130
**参数:**

| 参数名   | 类型                | 必填 | 说明                   |
| -------- | ---------------- | ---- | ------------------- |
P
panqiangbiao 已提交
131
| type  | type   | 是   | 媒体类型 <br/>'deviceChange':&nbsp;注册设备变更 <br/>'albumChange':&nbsp;相册变更<br/>'imageChange':&nbsp;图片文件变更<br/>'audioChange': &nbsp;音频文件变更<br/>'videoChange':  &nbsp;视频文件变更<br/>'fileChange':     &nbsp;文件变更<br/>'remoteFileChange':&nbsp;注册设备上文件变更 |
P
panqiangbiao 已提交
132
| callback | callback&lt;void&gt; | 是   | 回调返回空 |
P
panqiangbiao 已提交
133 134 135 136

**示例:**

```
P
panqiangbiao 已提交
137
mediaLibrary.on('imageChange', () => {
P
panqiangbiao 已提交
138
    // image file had changed, do something
P
panqiangbiao 已提交
139 140
})
```
P
panqiangbiao 已提交
141
### off<sup>8+</sup>
P
panqiangbiao 已提交
142

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

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

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

P
panqiangbiao 已提交
149 150 151 152
**参数:**

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

**示例:**

```
P
panqiangbiao 已提交
159
mediaLibrary.off('imageChange', () => {
P
panqiangbiao 已提交
160
    // stop listening success
P
panqiangbiao 已提交
161 162 163
})
```

P
panqiangbiao 已提交
164
### createAsset <sup>8+</sup>
P
panqiangbiao 已提交
165

P
panqiangbiao 已提交
166
createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
167 168 169

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

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

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

P
panqiangbiao 已提交
174 175
**参数:**

P
panqiangbiao 已提交
176 177 178 179 180 181
| 参数名       | 类型                                    | 必填 | 说明                                                         |
| ------------ | --------------------------------------- | ---- | ------------------------------------------------------------ |
| mediaType    | [MediaType](#MediaType)                 | 是   | 媒体类型                                                     |
| displayName  | string                                  | 是   | 展示文件名                                                   |
| relativePath | string                                  | 是   | 相对公共目录路径,可以通过getPublicDirectory获取不同类型媒体文件的一层目录的relative path |
| callback     | AsyncCallback<[FileAsset](#fileasset8)> | 是   | 异步获取媒体数据FileAsset之后的回调                          |
P
panqiangbiao 已提交
182 183 184 185

**示例:**

```
P
panqiangbiao 已提交
186 187 188
// 使用Callback方式创建Image类型文件
let mediaType = mediaLibrary.MediaType.IMAGE;
let path = "Pictures/";
P
panqiangbiao 已提交
189
mediaLibrary.createAsset(mediaType, 'imageCallBack.jpg', path, (err, fileAsset) => {
P
panqiangbiao 已提交
190 191
    if (fileAsset != undefined) {
        console.info('createAsset successfully, message = ' + err);
P
panqiangbiao 已提交
192
    } else {
P
panqiangbiao 已提交
193
        console.info('createAsset failed, message = ' + err);
P
panqiangbiao 已提交
194 195
    }
});
P
panqiangbiao 已提交
196 197
```

P
panqiangbiao 已提交
198
### createAsset<sup>8+</sup>
P
panqiangbiao 已提交
199

P
panqiangbiao 已提交
200
createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
201 202 203

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

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

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

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

P
panqiangbiao 已提交
210 211 212 213 214
| 参数名       | 类型                    | 必填 | 说明                                                         |
| ------------ | ----------------------- | ---- | ------------------------------------------------------------ |
| mediaType    | [MediaType](#MediaType) | 是   | 媒体类型                                                     |
| displayName  | string                  | 是   | 展示文件名                                                   |
| relativePath | string                  | 是   | 相对路径,可以通过getPublicDirectory获取不同类型媒体文件的一层目录的relative path |
P
panqiangbiao 已提交
215 216 217

**返回值**

P
panqiangbiao 已提交
218 219 220
| 类型                     | 说明              |
| ------------------------ | ----------------- |
| [FileAsset](#fileasset8) | 媒体数据FileAsset |
P
panqiangbiao 已提交
221 222 223 224

**示例:**

```
P
panqiangbiao 已提交
225 226 227
// 使用Promise方式创建Image类型文件
let mediaType = mediaLibrary.MediaType.IMAGE;
let path = "Pictures/";
P
panqiangbiao 已提交
228
mediaLibrary.createAsset(mediaType, "image01.jpg", path).then (function (asset) {
P
panqiangbiao 已提交
229 230 231 232
    console.info("createAsset successfully:"+ JSON.stringify(asset));
}).catch(function(err){
    console.info("createAsset failed with error:"+ err);
});
P
panqiangbiao 已提交
233 234
```

P
panqiangbiao 已提交
235
### getPublicDirectory<sup>8+</sup>
P
panqiangbiao 已提交
236

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

P
panqiangbiao 已提交
239
获取公共目录路径,使用callback方式返回结果。
P
panqiangbiao 已提交
240 241 242 243 244 245 246

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

**参数:**

| 参数名 | 类型                            | 必填 | 说明         |
| ------ | ------------------------------- | ---- | ------------ |
P
panqiangbiao 已提交
247
| type   | [DirectoryType](#directorytype) | 是   | 公共目录类型 |
P
panqiangbiao 已提交
248 249 250 251 252 253
| callback   |AsyncCallback&lt;string&gt; | 是   | callback 返回公共目录路径 |

**示例:**

```
let DIR_CAMERA = mediaLibrary.DirectoryType.DIR_CAMERA;
P
panqiangbiao 已提交
254
media.getPublicDirectory(DIR_CAMERA, (err, dicResult) => {
P
panqiangbiao 已提交
255
    if (dicResult == 'camera/') {
P
panqiangbiao 已提交
256
        console.info('mediaLibraryTest : getPublicDirectory passed');
P
panqiangbiao 已提交
257
    } else {
P
panqiangbiao 已提交
258
        console.info('mediaLibraryTest : getPublicDirectory failed');
P
panqiangbiao 已提交
259 260 261 262
    }
});
```

P
panqiangbiao 已提交
263
### getPublicDirectory<sup>8+</sup>
P
panqiangbiao 已提交
264

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

P
panqiangbiao 已提交
267
获取公共目录路径,使用Promise方式返回结果。
P
panqiangbiao 已提交
268 269 270 271 272 273 274

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

**参数:**

| 参数名 | 类型                            | 必填 | 说明         |
| ------ | ------------------------------- | ---- | ------------ |
P
panqiangbiao 已提交
275
| type   | [DirectoryType](#directorytype) | 是   | 公共目录类型 |
P
panqiangbiao 已提交
276 277 278 279 280 281 282 283 284 285

**返回值:**

| 类型            | 说明             |
| --------------- | ---------------- |
| Promise<string> | 返回公共目录路径 |

**示例:**

```
P
panqiangbiao 已提交
286
async function example() {
P
panqiangbiao 已提交
287 288 289 290 291 292 293
    let DIR_CAMERA = mediaLibrary.DirectoryType.DIR_CAMERA;
    const dicResult = await media.getPublicDirectory(DIR_CAMERA);
    if (dicResult == 'camera/') {
        console.info('MediaLibraryTest : getPublicDirectory');
    } else {
        console.info('MediaLibraryTest : getPublicDirectory failed');
    }
P
panqiangbiao 已提交
294 295 296
}
```

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

P
panqiangbiao 已提交
299
getAlbums(options: MediaFetchOptions, callback: AsyncCallback<Array&lt;Album&gt;>): void
P
panqiangbiao 已提交
300 301 302

获取实体相册,使用callback 方式返回结果。

P
panqiangbiao 已提交
303
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
304

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

P
panqiangbiao 已提交
307 308
**参数**

P
panqiangbiao 已提交
309 310 311 312
| 参数名   | 类型                                         | 必填 | 说明                        |
| -------- | -------------------------------------------- | ---- | --------------------------- |
| options  | [MediaFetchOptions](#mediafetchoptions8)     | 是   | 媒体文件获取条件            |
| callback | AsyncCallback&lt;Array<[Album](#album8)>&gt; | 是   | 异步获取Album列表之后的回调 |
P
panqiangbiao 已提交
313 314 315 316

**示例:**

```
P
panqiangbiao 已提交
317 318 319 320
let AlbumNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
};
P
panqiangbiao 已提交
321
mediaLibrary.getAlbums(AlbumNoArgsfetchOp, (err, albumList) => {
P
panqiangbiao 已提交
322 323 324 325 326 327 328
    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 已提交
329
})
P
panqiangbiao 已提交
330 331
```

P
panqiangbiao 已提交
332
### getAlbums<sup>8+</sup>
P
panqiangbiao 已提交
333

P
panqiangbiao 已提交
334
getAlbums(options: MediaFetchOptions): Promise<Array&lt;Album&gt;>
P
panqiangbiao 已提交
335 336 337

获取实体相册,使用 promise 方式返回结果。

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

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

P
panqiangbiao 已提交
342 343
**参数:**

P
panqiangbiao 已提交
344 345 346
| 参数名  | 类型                                     | 必填 | 说明             |
| ------- | ---------------------------------------- | ---- | ---------------- |
| options | [MediaFetchOptions](#mediafetchoptions8) | 是   | 媒体文件获取条件 |
P
panqiangbiao 已提交
347 348 349

**返回值:**

P
panqiangbiao 已提交
350 351 352
| 类型                             | 说明          |
| -------------------------------- | ------------- |
| Promise<Array<[Album](#album8)>> | 返回Album列表 |
P
panqiangbiao 已提交
353 354 355 356

**示例:**

```
P
panqiangbiao 已提交
357 358 359 360
let AlbumNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
};
P
panqiangbiao 已提交
361
mediaLibrary.getAlbums(AlbumNoArgsfetchOp).then(function(albumList){
P
panqiangbiao 已提交
362 363 364 365
    console.info("getAlbums successfully:"+ JSON.stringify(albumList));
}).catch(function(err){
    console.info("getAlbums failed with error:"+ err);
});
P
panqiangbiao 已提交
366 367
```

P
panqiangbiao 已提交
368
### release<sup>8+</sup>
P
panqiangbiao 已提交
369

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

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

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

P
panqiangbiao 已提交
377 378 379 380
**参数:**

| 参数名   | 类型                   | 必填 | 说明                   |
| -------- | ------------------- | ---- | ---------------------- |
P
panqiangbiao 已提交
381
| callback | AsyncCallback&lt;void&gt; | 是   | 回调表示成功还是失败 |
P
panqiangbiao 已提交
382 383 384 385

**示例:**

```
P
panqiangbiao 已提交
386 387
var media = mediaLibrary.getMediaLibrary(context);
media.release((err, data) => {
P
panqiangbiao 已提交
388
    // do something
P
panqiangbiao 已提交
389
});
P
panqiangbiao 已提交
390 391
```

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

P
panqiangbiao 已提交
394
release(): Promise&lt;void&gt;
P
panqiangbiao 已提交
395

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

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

P
panqiangbiao 已提交
401 402 403 404
**返回值:**

| 类型          | 说明                                |
| ------------- | ----------------------------------- |
P
panqiangbiao 已提交
405
| Promise&lt;void&gt; | Promise实例,用于获取异步返回结果 |
P
panqiangbiao 已提交
406 407 408 409

**示例:**

```
P
panqiangbiao 已提交
410 411
var media = mediaLibrary.getMediaLibrary(context);
media.release()
P
panqiangbiao 已提交
412 413
```

P
panqiangbiao 已提交
414 415 416 417 418 419
## FileAsset<sup>8+</sup>

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

### **属性**

P
panqiangbiao 已提交
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
| 名称         | 类型                    | 可读 | 可写 | 说明                                                   |
| ------------ | ----------------------- | ---- | ---- | ------------------------------------------------------ |
| id           | number                  | 是   | 否   | 文件资源编号                                           |
| uri          | string                  | 是   | 否   | 文件资源uri(如:dataability:///media/image/2)         |
| mimeType     | string                  | 是   | 否   | 文件扩展属性                                           |
| mediaType    | [MediaType](#mediaType) | 是   | 否   | 媒体类型                                               |
| displayName  | string                  | 是   | 是   | 显示文件名                                             |
| title        | string                  | 是   | 是   | 文件标题                                               |
| relativePath | string                  | 是   | 是   | 相对公共目录路径                                       |
| parent       | number                  | 是   | 否   | 父目录id                                               |
| size         | number                  | 是   | 否   | 文件大小(单位:字节)                                 |
| dateAdded    | number                  | 是   | 否   | 添加日期(添加文件时间到1970年1月1日的秒数值)         |
| dateModified | number                  | 是   | 否   | 修改日期(修改文件时间到1970年1月1日的秒数值)         |
| dateTaken    | number                  | 是   | 否   | 拍摄日期(文件拍照时间到1970年1月1日的秒数值)         |
| artist       | string                  | 是   | 否   | 作者                                                   |
| audioAlbum   | string                  | 是   | 否   | 专辑                                                   |
| width        | number                  | 是   | 否   | 图片宽度(单位:像素)                                 |
| height       | number                  | 是   | 否   | 图片高度(单位:像素)                                 |
| orientation  | number                  | 是   | 是   | 图片显示方向(顺时针旋转角度,如0,90,180  单位:度) |
| duration     | number                  | 是   | 否   | 持续时间(单位:秒)                                   |
| albumId      | number                  | 是   | 否   | 文件所归属的相册编号                                   |
| albumUri     | string                  | 是   | 否   | 文件所归属相册uri                                      |
| albumName    | string                  | 是   | 否   | 文件所归属相册名称                                     |
P
panqiangbiao 已提交
443 444 445


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

P
panqiangbiao 已提交
447
isDirectory(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
448 449 450

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

P
panqiangbiao 已提交
451
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
452

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

P
panqiangbiao 已提交
455 456 457 458 459 460 461 462 463
**参数:**

| 参数名   | 类型                   | 必填 | 说明                          |
| -------- | ---------------------- | ---- | ----------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 当前FileAsset是否是目录的回调 |

**示例:**

```
P
panqiangbiao 已提交
464
async function example() {
P
panqiangbiao 已提交
465 466 467 468 469 470 471 472 473 474 475 476 477
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isDirectory((err, isDirectory) => {
        // do something
    });
}
P
panqiangbiao 已提交
478 479
```

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

P
panqiangbiao 已提交
482
isDirectory():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
483 484 485

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

P
panqiangbiao 已提交
486
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
487

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

P
panqiangbiao 已提交
490 491 492 493
**返回值:**

| 类型             | 说明                                       |
| ---------------- | ------------------------------------------ |
P
panqiangbiao 已提交
494
| Promise&lt;boolean&gt; | Promise实例,返回当前FileAsset是否是目录 |
P
panqiangbiao 已提交
495 496 497 498

**示例:**

```
P
panqiangbiao 已提交
499
async function example() {
P
panqiangbiao 已提交
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    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 已提交
515 516
```

P
panqiangbiao 已提交
517
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
518

P
panqiangbiao 已提交
519
commitModify(callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
520 521 522

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

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

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

P
panqiangbiao 已提交
527 528 529 530 531 532 533 534 535
**参数:**

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

**示例:**

```
P
panqiangbiao 已提交
536
async function example() {
P
panqiangbiao 已提交
537 538 539 540 541 542 543 544 545
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
P
panqiangbiao 已提交
546
    asset.title = 'newtitle';
P
panqiangbiao 已提交
547 548
    asset.commitModify(() => {
        console.info('commitModify success');   
P
panqiangbiao 已提交
549
    });
P
panqiangbiao 已提交
550
}
P
panqiangbiao 已提交
551 552
```

P
panqiangbiao 已提交
553
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
554

P
panqiangbiao 已提交
555
commitModify(): Promise&lt;void&gt;
P
panqiangbiao 已提交
556 557 558

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

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

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

P
panqiangbiao 已提交
563 564 565 566
**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
567
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
568 569 570 571

**示例:**

```
P
panqiangbiao 已提交
572
async function example() {
P
panqiangbiao 已提交
573 574 575 576 577 578 579 580 581
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
P
panqiangbiao 已提交
582
    asset.title = 'newtitle';
P
panqiangbiao 已提交
583 584
    asset.commitModify();
}
P
panqiangbiao 已提交
585 586
```

P
panqiangbiao 已提交
587
### open<sup>8+</sup>
P
panqiangbiao 已提交
588

P
panqiangbiao 已提交
589
open(mode: string, callback: AsyncCallback&lt;number&gt;): void
P
panqiangbiao 已提交
590 591 592

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

P
panqiangbiao 已提交
593
**需要权限**:ohos.permission.READ_MEDIA('r'模式打开),ohos.permission.WRITE_MEDIA('w'模式打开)
P
panqiangbiao 已提交
594

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

P
panqiangbiao 已提交
597 598 599 600
**参数**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
P
panqiangbiao 已提交
601
| mode     | string                 | 是   | 打开文件方式,如:'r'(只读), 'w'(只写), 'rw'(读写) |
P
panqiangbiao 已提交
602 603 604 605 606
| callback | AsyncCallback&lt;number&gt; | 是   | 回调返回文件句柄 |

**示例:**

```
P
panqiangbiao 已提交
607
async function example() {
P
panqiangbiao 已提交
608 609 610 611 612 613 614 615 616 617 618
    let mediaType = mediaLibrary.MediaType.IMAGE;
    let path = "Pictures/";
    asset = await media.createAsset(mediaType, "image00003.jpg", path);
    asset.open('rw', (openError, fd) => {
            if(fd > 0){
                asset.close(fd);
            }else{
                console.info('File Open Failed!' + openError);
            }
    });
}
P
panqiangbiao 已提交
619 620
```

P
panqiangbiao 已提交
621
### open<sup>8+</sup>
P
panqiangbiao 已提交
622

P
panqiangbiao 已提交
623
open(mode: string): Promise&lt;number&gt;
P
panqiangbiao 已提交
624 625 626

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

P
panqiangbiao 已提交
627
**需要权限**:ohos.permission.READ_MEDIA('r'模式打开),ohos.permission.WRITE_MEDIA('w'模式打开)
P
panqiangbiao 已提交
628

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

P
panqiangbiao 已提交
631 632
**参数:**

P
panqiangbiao 已提交
633 634 635
| 参数名 | 类型   | 必填 | 说明                                                     |
| ------ | ------ | ---- | -------------------------------------------------------- |
| mode   | string | 是   | 打开文件方式,如:'r'(只读), 'w'(只写), 'rw'(读写) |
P
panqiangbiao 已提交
636 637 638 639 640

**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
641
| Promise&lt;number&gt; | Promise返回文件句柄 |
P
panqiangbiao 已提交
642 643 644 645

**示例:**

```
P
panqiangbiao 已提交
646
async function example() {
P
panqiangbiao 已提交
647 648 649 650 651 652 653 654 655 656 657
    let mediaType = mediaLibrary.MediaType.IMAGE;
    let path = "Pictures/";
    asset = await media.createAsset(mediaType, "image00003.jpg", path);
    asset.open('rw').then((openError, fd) => {
            if(fd > 0){
                asset.close(fd);
            }else{
                console.info('File Open Failed!' + openError);
            }
    });
}
P
panqiangbiao 已提交
658 659
```

P
panqiangbiao 已提交
660
### close<sup>8+</sup>
P
panqiangbiao 已提交
661

P
panqiangbiao 已提交
662
close(fd: number, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
663 664 665

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

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

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

P
panqiangbiao 已提交
670 671 672 673
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
P
panqiangbiao 已提交
674
| fd       | number                 | 是   | 文件描述符          |
P
panqiangbiao 已提交
675 676 677 678 679
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |

**示例:**

```
P
panqiangbiao 已提交
680
async function example() {
P
panqiangbiao 已提交
681 682 683 684 685 686 687 688 689 690 691
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.close(fd, (closeErr) => {
        if (closeErr != undefined) {
P
panqiangbiao 已提交
692 693
            console.info('mediaLibraryTest : close : FAIL ' + closeErr.message);
            console.info('mediaLibraryTest : ASSET_CALLBACK : FAIL');
P
panqiangbiao 已提交
694 695 696 697 698
        } else {
            console.info("=======asset.close success====>");
        }
    });
}
P
panqiangbiao 已提交
699 700
```

P
panqiangbiao 已提交
701
### close<sup>8+</sup>
P
panqiangbiao 已提交
702

P
panqiangbiao 已提交
703
close(fd: number): Promise&lt;void&gt;
P
panqiangbiao 已提交
704 705 706

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

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

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

P
panqiangbiao 已提交
711 712 713 714 715 716 717 718 719 720
**参数:**

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

**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
721
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
722 723 724 725

**示例:**

```
P
panqiangbiao 已提交
726
async function example() {
P
panqiangbiao 已提交
727 728 729 730 731 732 733 734 735 736 737
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.close(fd).then((closeErr) => {
        if (closeErr != undefined) {
P
panqiangbiao 已提交
738 739
            console.info('mediaLibraryTest : close : FAIL ' + closeErr.message);
            console.info('mediaLibraryTest : ASSET_CALLBACK : FAIL');
P
panqiangbiao 已提交
740 741 742 743 744 745

        } else {
            console.info("=======asset.close success====>");
        }
    });
}
P
panqiangbiao 已提交
746 747
```

P
panqiangbiao 已提交
748
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
749

P
panqiangbiao 已提交
750
getThumbnail(callback: AsyncCallback&lt;image.PixelMap&gt;): void
P
panqiangbiao 已提交
751 752 753

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

P
panqiangbiao 已提交
754
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
755

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

P
panqiangbiao 已提交
758 759 760 761 762 763 764 765 766
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback&lt;image.PixelMap&gt; | 是   | 回调返回缩略图的PixelMap |

**示例:**

```
P
panqiangbiao 已提交
767
async function example() {
P
panqiangbiao 已提交
768 769 770 771 772 773 774 775 776 777
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail((err, pixelmap) => {
P
panqiangbiao 已提交
778
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
779 780
    });
}
P
panqiangbiao 已提交
781 782
```

P
panqiangbiao 已提交
783
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
784

P
panqiangbiao 已提交
785
getThumbnail(size: Size, callback: AsyncCallback&lt;image.PixelMap&gt;): void
P
panqiangbiao 已提交
786 787 788

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

P
panqiangbiao 已提交
789
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
790

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

P
panqiangbiao 已提交
793 794 795 796
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
P
panqiangbiao 已提交
797
| size     | [Size](#size8)        | 是   | 缩略图尺寸          |
P
panqiangbiao 已提交
798 799 800 801 802
| callback | AsyncCallback&lt;image.PixelMap&gt; | 是   | 回调返回缩略图的PixelMap |

**示例:**

```
P
panqiangbiao 已提交
803
async function example() {
P
panqiangbiao 已提交
804 805 806 807 808 809 810 811 812 813
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail(size, (err, pixelmap) => {
P
panqiangbiao 已提交
814
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
815 816
    });
}
P
panqiangbiao 已提交
817 818
```

P
panqiangbiao 已提交
819
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
820

P
panqiangbiao 已提交
821
getThumbnail(size?: Size): Promise&lt;image.PixelMap&gt;
P
panqiangbiao 已提交
822 823 824

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

P
panqiangbiao 已提交
825
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
826

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

P
panqiangbiao 已提交
829 830
**参数:**

P
panqiangbiao 已提交
831 832 833
| 参数名 | 类型           | 必填 | 说明       |
| ------ | -------------- | ---- | ---------- |
| size   | [Size](#size8) | 否   | 缩略图尺寸 |
P
panqiangbiao 已提交
834 835 836 837 838

**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
839
| Promise&lt;image.PixelMap&gt; | Promise返回缩略图的PixelMap |
P
panqiangbiao 已提交
840 841 842 843

**示例:**

```
P
panqiangbiao 已提交
844
async function example() {
P
panqiangbiao 已提交
845 846 847 848 849 850 851 852 853 854
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail(size, (err, pixelmap) => {
P
panqiangbiao 已提交
855
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
856 857
    });
}
P
panqiangbiao 已提交
858 859
```

P
panqiangbiao 已提交
860
### favorite<sup>8+</sup>
P
panqiangbiao 已提交
861

P
panqiangbiao 已提交
862
favorite(isFavorite: boolean, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
863 864 865

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

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

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

P
panqiangbiao 已提交
870 871 872 873
**参数:**

| 参数名     | 类型                | 必填 | 说明           |
| ---------- | ------------------- | ---- | -------------- |
P
panqiangbiao 已提交
874
| isFavorite | boolean             | 是   | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
P
panqiangbiao 已提交
875
| callback   | AsyncCallback&lt;void&gt; | 是   | 回调返回空    |
P
panqiangbiao 已提交
876 877 878 879

**示例:**

```
P
panqiangbiao 已提交
880
async function example() {
P
panqiangbiao 已提交
881 882 883 884 885 886 887 888 889 890 891 892 893
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.favorite(true,function(err){
        // do something
    });
}
P
panqiangbiao 已提交
894 895
```

P
panqiangbiao 已提交
896
### favorite<sup>8+</sup>
P
panqiangbiao 已提交
897

P
panqiangbiao 已提交
898
favorite(isFavorite: boolean): Promise&lt;void&gt;
P
panqiangbiao 已提交
899 900 901

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

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

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

P
panqiangbiao 已提交
906 907
**参数:**

P
panqiangbiao 已提交
908 909 910
| 参数名     | 类型    | 必填 | 说明                                                       |
| ---------- | ------- | ---- | ---------------------------------------------------------- |
| isFavorite | boolean | 是   | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
P
panqiangbiao 已提交
911 912 913 914 915

**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
916
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
917 918 919 920

**示例:**

```
P
panqiangbiao 已提交
921
async function example() {
P
panqiangbiao 已提交
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    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 已提交
937 938
```

P
panqiangbiao 已提交
939
### isFavorite<sup>8+</sup>
P
panqiangbiao 已提交
940

P
panqiangbiao 已提交
941
isFavorite(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
942 943 944

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

P
panqiangbiao 已提交
945
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
946

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

P
panqiangbiao 已提交
949 950 951 952 953 954 955 956 957
**参数:**

| 参数名   | 类型                   | 必填 | 说明                   |
| -------- | ---------------------- | ---- | ---------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调表示是否为收藏文件 |

**示例:**

```
P
panqiangbiao 已提交
958
async function example() {
P
panqiangbiao 已提交
959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    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 已提交
976 977
```

P
panqiangbiao 已提交
978
### isFavorite<sup>8+</sup>
P
panqiangbiao 已提交
979

P
panqiangbiao 已提交
980
isFavorite():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
981 982 983

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

P
panqiangbiao 已提交
984
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
985

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

P
panqiangbiao 已提交
988 989 990 991
**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
992
| Promise&lt;boolean&gt; | Promise回调表示是否是收藏文件 |
P
panqiangbiao 已提交
993 994 995 996

**示例:**

```
P
panqiangbiao 已提交
997
async function example() {
P
panqiangbiao 已提交
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    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 已提交
1013 1014
```

P
panqiangbiao 已提交
1015
### trash<sup>8+</sup>
P
panqiangbiao 已提交
1016

P
panqiangbiao 已提交
1017
trash(isTrash: boolean, callback: AsyncCallback&lt;void&g;): void
P
panqiangbiao 已提交
1018 1019 1020

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

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

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

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

P
panqiangbiao 已提交
1027 1028 1029 1030
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
P
panqiangbiao 已提交
1031
| isTrash  | boolean                | 是   | 是否设置为垃圾文件    |
P
panqiangbiao 已提交
1032 1033 1034 1035 1036
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |

**示例:**

```
P
panqiangbiao 已提交
1037
async function example() {
P
panqiangbiao 已提交
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.trash(true, trashCallBack);
    function trashCallBack(err, trash) {
P
panqiangbiao 已提交
1049
        console.info('mediaLibraryTest : ASSET_CALLBACK ASSET_CALLBACK trash');
P
panqiangbiao 已提交
1050
    }
P
panqiangbiao 已提交
1051
}
P
panqiangbiao 已提交
1052 1053
```

P
panqiangbiao 已提交
1054
### trash<sup>8+</sup>
P
panqiangbiao 已提交
1055

P
panqiangbiao 已提交
1056
trash(isTrash: boolean,): Promise&lt;void&gt;
P
panqiangbiao 已提交
1057 1058 1059

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

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

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

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

P
panqiangbiao 已提交
1066 1067
**参数:**

P
panqiangbiao 已提交
1068 1069 1070
| 参数名  | 类型    | 必填 | 说明               |
| ------- | ------- | ---- | ------------------ |
| isTrash | boolean | 是   | 是否设置为垃圾文件 |
P
panqiangbiao 已提交
1071 1072 1073 1074 1075

**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
1076
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1077 1078 1079 1080

**示例:**

```
P
panqiangbiao 已提交
1081
async function example() {
P
panqiangbiao 已提交
1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    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 已提交
1097 1098
```

P
panqiangbiao 已提交
1099
### isTrash<sup>8+</sup>
P
panqiangbiao 已提交
1100

P
panqiangbiao 已提交
1101
isTrash(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
1102 1103 1104

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

P
panqiangbiao 已提交
1105
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1106

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

P
panqiangbiao 已提交
1109 1110 1111 1112 1113 1114 1115 1116 1117
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回表示文件是否为垃圾文件 |

**示例:**

```
P
panqiangbiao 已提交
1118
async function example() {
P
panqiangbiao 已提交
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isTrash(isTrashCallBack);
    function isTrashCallBack(err, isTrash) {
            if (isTrash == true) {
P
panqiangbiao 已提交
1131
                console.info('mediaLibraryTest : ASSET_CALLBACK ASSET_CALLBACK isTrash = ' + isTrash);
P
panqiangbiao 已提交
1132 1133 1134
                asset.trash(true, trashCallBack);

            } else {
P
panqiangbiao 已提交
1135 1136
                console.info('mediaLibraryTest : ASSET_CALLBACK isTrash Unsuccessfull = ' + err);
                console.info('mediaLibraryTest : ASSET_CALLBACK isTrash : FAIL');
P
panqiangbiao 已提交
1137 1138

            }
P
panqiangbiao 已提交
1139
    }
P
panqiangbiao 已提交
1140
}
P
panqiangbiao 已提交
1141 1142
```

P
panqiangbiao 已提交
1143
### isTrash<sup>8+</sup>
P
panqiangbiao 已提交
1144

P
panqiangbiao 已提交
1145
isTrash():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
1146

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

P
panqiangbiao 已提交
1149
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1150

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

P
panqiangbiao 已提交
1153 1154 1155 1156
**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
1157
| Promise&lt;void&gt; | Promise回调表示文件是否为垃圾文件 |
P
panqiangbiao 已提交
1158 1159 1160 1161

**示例:**

```
P
panqiangbiao 已提交
1162
async function example() {
P
panqiangbiao 已提交
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    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 已提交
1178 1179
```

P
panqiangbiao 已提交
1180
## FetchFileResult<sup>8+</sup>
P
panqiangbiao 已提交
1181 1182 1183

文件检索结果集。

P
panqiangbiao 已提交
1184
### getCount<sup>8+</sup>
P
panqiangbiao 已提交
1185

P
panqiangbiao 已提交
1186
getCount(): number
P
panqiangbiao 已提交
1187 1188 1189

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

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

P
panqiangbiao 已提交
1192 1193
**返回值**

P
panqiangbiao 已提交
1194 1195 1196
| 类型   | 说明             |
| ------ | ---------------- |
| number | 检索到的文件总数 |
P
panqiangbiao 已提交
1197 1198 1199 1200

**示例**

```
P
panqiangbiao 已提交
1201
async function example() {
P
panqiangbiao 已提交
1202 1203 1204 1205 1206 1207 1208 1209 1210
    let getFileCountOneOp = {
        selections: fileKeyObj.MEDIA_TYPE + '= ?',
        selectionArgs: [fileType.toString()],
        order: fileKeyObj.DATE_ADDED,
        extendArgs: "LIMIT 0,1",
    };
    let fetchFileResult = await media.getFileAssets(getFileCountOneOp);
    const fetchCount = fetchFileResult.getCount();
}
P
panqiangbiao 已提交
1211 1212
```

P
panqiangbiao 已提交
1213
### isAfterLast<sup>8+</sup>
P
panqiangbiao 已提交
1214

P
panqiangbiao 已提交
1215
isAfterLast(): boolean
P
panqiangbiao 已提交
1216 1217 1218

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

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

P
panqiangbiao 已提交
1221 1222
**返回值**

P
panqiangbiao 已提交
1223 1224 1225
| 类型    | 说明                                                        |
| ------- | ----------------------------------------------------------- |
| boolean | 当读到最后一条记录后,后续没有记录返回true,否则返回false。 |
P
panqiangbiao 已提交
1226 1227 1228 1229

**示例**

```
P
panqiangbiao 已提交
1230
async function example() {
P
panqiangbiao 已提交
1231 1232 1233 1234 1235 1236 1237 1238 1239
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
1240
    console.info('mediaLibraryTest : count:' + fetchCount);
P
panqiangbiao 已提交
1241 1242 1243 1244
    let fileAsset = await fetchFileResult.getFirstObject();
    for (var i = 1; i < fetchCount; i++) {
            fileAsset = await fetchFileResult.getNextObject();
            if(i == fetchCount - 1) {
P
panqiangbiao 已提交
1245
              console.info('mediaLibraryTest : isLast');
P
panqiangbiao 已提交
1246
              var result = fetchFileResult.isAfterLast();
P
panqiangbiao 已提交
1247 1248
              console.info('mediaLibraryTest : isAfterLast:' + result);
              console.info('mediaLibraryTest : isAfterLast end');
P
panqiangbiao 已提交
1249
              fetchFileResult.close();
P
panqiangbiao 已提交
1250

P
panqiangbiao 已提交
1251 1252
            }
    }
P
panqiangbiao 已提交
1253
}
P
panqiangbiao 已提交
1254 1255
```

P
panqiangbiao 已提交
1256
### close<sup>8+</sup>
P
panqiangbiao 已提交
1257

P
panqiangbiao 已提交
1258
close(): void
P
panqiangbiao 已提交
1259 1260 1261

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

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

P
panqiangbiao 已提交
1264 1265 1266
**示例**

```
P
panqiangbiao 已提交
1267
async function example() {
P
panqiangbiao 已提交
1268 1269 1270 1271 1272 1273 1274 1275 1276 1277
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.close();
}
P
panqiangbiao 已提交
1278 1279
```

P
panqiangbiao 已提交
1280
### getFirstObject<sup>8+</sup>
P
panqiangbiao 已提交
1281

P
panqiangbiao 已提交
1282
getFirstObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1283 1284 1285

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

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

P
panqiangbiao 已提交
1288 1289
**参数**

P
panqiangbiao 已提交
1290 1291 1292
| 参数名   | 类型                                          | 必填 | 说明                                        |
| -------- | --------------------------------------------- | ---- | ------------------------------------------- |
| callback | AsyncCallback&lt;[FileAsset](#fileasset8)&gt; | 是   | 异步获取结果集中第一个FileAsset完成后的回调 |
P
panqiangbiao 已提交
1293 1294 1295 1296

**示例**

```
P
panqiangbiao 已提交
1297
async function example() {
P
panqiangbiao 已提交
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getFirstObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1314 1315
```

P
panqiangbiao 已提交
1316
### getFirstObject<sup>8+</sup>
P
panqiangbiao 已提交
1317

P
panqiangbiao 已提交
1318
getFirstObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1319 1320 1321

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

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

P
panqiangbiao 已提交
1324 1325 1326 1327
**返回值**

| 类型                | 说明                                   |
| ------------------ | -------------------------------------- |
P
panqiangbiao 已提交
1328
| Promise&lt;[FileAsset](#fileasset8)&gt; | Promise方式返回FileAsset               |
P
panqiangbiao 已提交
1329 1330 1331 1332

**示例**

```
P
panqiangbiao 已提交
1333
async function example() {
P
panqiangbiao 已提交
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    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 已提交
1348 1349
```

P
panqiangbiao 已提交
1350
### getNextObject<sup>8+</sup>
P
panqiangbiao 已提交
1351

P
panqiangbiao 已提交
1352
 getNextObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1353 1354 1355

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

P
panqiangbiao 已提交
1356
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1357

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

P
panqiangbiao 已提交
1360 1361
**参数**

P
panqiangbiao 已提交
1362 1363 1364
| 参数名    | 类型                                          | 必填 | 说明                                      |
| --------- | --------------------------------------------- | ---- | ----------------------------------------- |
| callbacke | AsyncCallback&lt;[FileAsset](#fileasset8)&gt; | 是   | 异步返回结果集中下一个FileAsset之后的回调 |
P
panqiangbiao 已提交
1365 1366 1367 1368

**示例**

```
P
panqiangbiao 已提交
1369
async function example() {
P
panqiangbiao 已提交
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getNextObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1386 1387
```

P
panqiangbiao 已提交
1388
### getNextObject<sup>8+</sup>
P
panqiangbiao 已提交
1389

P
panqiangbiao 已提交
1390
 getNextObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1391 1392 1393

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

P
panqiangbiao 已提交
1394
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1395

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

P
panqiangbiao 已提交
1398 1399 1400 1401
**返回值**

| 类型                             | 说明                |
| -------------------------------- | ------------------- |
P
panqiangbiao 已提交
1402
| Promise&lt;[FileAsset](#fileasset8)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1403 1404 1405 1406

**示例**

```
P
panqiangbiao 已提交
1407
async function example() {
P
panqiangbiao 已提交
1408 1409 1410 1411 1412 1413 1414 1415 1416
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
1417
    console.info('mediaLibraryTest : count:' + fetchCount);
P
panqiangbiao 已提交
1418 1419
    fileAsset = await fetchFileResult.getNextObject();
}
P
panqiangbiao 已提交
1420 1421
```

P
panqiangbiao 已提交
1422
### getLastObject<sup>8+</sup>
P
panqiangbiao 已提交
1423

P
panqiangbiao 已提交
1424
getLastObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1425 1426 1427

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

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

P
panqiangbiao 已提交
1430 1431
**参数**

P
panqiangbiao 已提交
1432 1433 1434
| 参数     | 类型                                          | 必填 | 说明                        |
| -------- | --------------------------------------------- | ---- | --------------------------- |
| callback | AsyncCallback&lt;[FileAsset](#fileasset8)&gt; | 是   | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
1435 1436 1437 1438

**示例**

```
P
panqiangbiao 已提交
1439
async function example() {
P
panqiangbiao 已提交
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getLastObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1456 1457
```

P
panqiangbiao 已提交
1458
### getLastObject<sup>8+</sup>
P
panqiangbiao 已提交
1459

P
panqiangbiao 已提交
1460
getLastObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1461 1462 1463

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

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

P
panqiangbiao 已提交
1466 1467 1468 1469
**返回值**

| 类型                             | 说明                |
| -------------------------------- | ------------------- |
P
panqiangbiao 已提交
1470
| Promise&lt;[FileAsset](#fileasset8)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1471 1472 1473 1474

**示例**

```
P
panqiangbiao 已提交
1475
async function example() {
P
panqiangbiao 已提交
1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    let lastObject = await fetchFileResult.getLastObject();
}
P
panqiangbiao 已提交
1486 1487
```

P
panqiangbiao 已提交
1488
### getPositionObject<sup>8+</sup>
P
panqiangbiao 已提交
1489

P
panqiangbiao 已提交
1490
getPositionObject(index: number, callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1491 1492 1493

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

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

P
panqiangbiao 已提交
1496 1497
**参数**

P
panqiangbiao 已提交
1498 1499 1500 1501
| 参数     | 类型                                          | 必填 | 说明                        |
| -------- | --------------------------------------------- | ---- | --------------------------- |
| index    | number                                        | 是   | 要获取的文件的索引,从0开始 |
| callback | AsyncCallback&lt;[FileAsset](#fileasset8)&gt; | 是   | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
1502 1503 1504 1505

**示例**

```
P
panqiangbiao 已提交
1506
async function example() {
P
panqiangbiao 已提交
1507 1508 1509 1510 1511 1512 1513 1514
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
P
panqiangbiao 已提交
1515
    fetchFileResult.getPositionObject(0, (err, value) => {
P
panqiangbiao 已提交
1516 1517 1518 1519 1520 1521 1522
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1523 1524
```

P
panqiangbiao 已提交
1525
### getPositionObject<sup>8+</sup>
P
panqiangbiao 已提交
1526

P
panqiangbiao 已提交
1527
getPositionObject(index: number): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1528 1529 1530

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

P
panqiangbiao 已提交
1531
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1532

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

P
panqiangbiao 已提交
1535 1536 1537 1538
**参数**

| 参数  | 类型   | 必填 | 说明                 |
| ----- | ------ | ---- | -------------------- |
P
panqiangbiao 已提交
1539
| index | number | 是   | 要获取的文件的索引,从0开始 |
P
panqiangbiao 已提交
1540 1541 1542 1543 1544

**返回值**

| 类型                             | 说明                |
| -------------------------------- | ------------------- |
P
panqiangbiao 已提交
1545
| Promise&lt;[FileAsset](#fileasset8)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1546 1547 1548 1549

**示例**

```
P
panqiangbiao 已提交
1550
async function example() {
P
panqiangbiao 已提交
1551 1552 1553 1554 1555 1556 1557 1558
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
P
panqiangbiao 已提交
1559
    fetchFileResult.getPositionObject(1, (err, value) => {
P
panqiangbiao 已提交
1560 1561 1562 1563 1564 1565 1566
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1567 1568
```

P
panqiangbiao 已提交
1569
### getAllObject<sup>8+</sup>
P
panqiangbiao 已提交
1570

P
panqiangbiao 已提交
1571
getAllObject(callback: AsyncCallback&lt;Array&lt;FileAsset&gt;&gt;): void
P
panqiangbiao 已提交
1572 1573 1574

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

P
panqiangbiao 已提交
1575
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1576

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

P
panqiangbiao 已提交
1579 1580
**参数**

P
panqiangbiao 已提交
1581 1582 1583
| 参数     | 类型                                           | 必填 | 说明                            |
| -------- | ---------------------------------------------- | ---- | ------------------------------- |
| callback | AsyncCallback<Array<[FileAsset](#fileasset8)>> | 是   | 异步返回FileAsset列表之后的回调 |
P
panqiangbiao 已提交
1584 1585 1586 1587

**示例**

```
P
panqiangbiao 已提交
1588
async function example() {
P
panqiangbiao 已提交
1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getAllObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1605 1606
```

P
panqiangbiao 已提交
1607
### getAllObject<sup>8+</sup>
P
panqiangbiao 已提交
1608

P
panqiangbiao 已提交
1609
getAllObject(): Promise&lt;Array&lt;FileAsset&gt;&gt;
P
panqiangbiao 已提交
1610 1611 1612

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

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

P
panqiangbiao 已提交
1615 1616
**返回值**

P
panqiangbiao 已提交
1617 1618 1619
| 类型                                     | 说明                  |
| ---------------------------------------- | --------------------- |
| Promise<Array<[FileAsset](#fileasset8)>> | 返回FileAsset对象列表 |
P
panqiangbiao 已提交
1620 1621 1622 1623

**示例**

```
P
panqiangbiao 已提交
1624
async function example() {
P
panqiangbiao 已提交
1625 1626 1627 1628 1629 1630 1631 1632 1633 1634
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    var data = fetchFileResult.getAllObject();
}
P
panqiangbiao 已提交
1635 1636
```

P
panqiangbiao 已提交
1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651
## Album<sup>8+</sup>

实体相册

### **属性**

| 名称         | 参数型 | 可读 | 可写 | 说明           |
| ------------ | ------ | ---- | ---- | -------------- |
| albumId      | number | 是   | 否   | 相册编号       |
| albumName    | string | 是   | 是   | 相册名称       |
| albumUri     | string | 是   | 否   | 相册Uri        |
| dateModified | number | 是   | 否   | 修改日期       |
| count        | number | 是   | 否   | 相册中文件数量 |
| relativePath | string | 是   | 否   | 相对路径       |
| coverUri     | string | 是   | 否   | 封面文件Uri    |
P
panqiangbiao 已提交
1652

P
panqiangbiao 已提交
1653 1654 1655
### commitModify<sup>8+</sup>

commitModify(callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
1656 1657 1658

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

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

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

P
panqiangbiao 已提交
1663 1664 1665 1666
**参数**

| 参数     | 类型                | 必填 | 说明                          |
| -------- | ------------------- | ---- | ----------------------------- |
P
panqiangbiao 已提交
1667
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空                  |
P
panqiangbiao 已提交
1668 1669 1670 1671

**示例**

```
P
panqiangbiao 已提交
1672
async function example() {
P
panqiangbiao 已提交
1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687
    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 已提交
1688 1689
```

P
panqiangbiao 已提交
1690
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
1691

P
panqiangbiao 已提交
1692
commitModify(): Promise&lt;void&gt;
P
panqiangbiao 已提交
1693 1694 1695

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

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

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

P
panqiangbiao 已提交
1700 1701 1702 1703 1704 1705 1706 1707 1708
**返回值**

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

**示例**

```
P
panqiangbiao 已提交
1709
async function example() {
P
panqiangbiao 已提交
1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722
    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 已提交
1723 1724
```

P
panqiangbiao 已提交
1725
### getFileAssets<sup>8+</sup>
P
panqiangbiao 已提交
1726

P
panqiangbiao 已提交
1727
getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void
P
panqiangbiao 已提交
1728 1729 1730

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

P
panqiangbiao 已提交
1731
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1732

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

P
panqiangbiao 已提交
1735 1736
**参数**

P
panqiangbiao 已提交
1737 1738 1739 1740
| 参数     | 类型                                         | 必填 | 说明                              |
| -------- | -------------------------------------------- | ---- | --------------------------------- |
| options  | [MediaFetchOptions](#mediafetchoptions8)     | 是   | 媒体检索选项                      |
| callback | AsyncCallback<[FetchFileResult](#fetchfileresult8)> | 是   | 异步返回FetchFileResult之后的回调 |
P
panqiangbiao 已提交
1741 1742 1743 1744

**示例**

```
P
panqiangbiao 已提交
1745
async function example() {
P
panqiangbiao 已提交
1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.getFileAssets(fileNoArgsfetchOp, getFileAssetsCallBack);
    function getFileAssetsCallBack(err, fetchFileResult) {
        // do something
    }
P
panqiangbiao 已提交
1756 1757 1758
}
```

P
panqiangbiao 已提交
1759
### getFileAssets<sup>8+</sup>
P
panqiangbiao 已提交
1760

P
panqiangbiao 已提交
1761
 getFileAssets(options?: MediaFetchOptions): Promise&lt;FetchFileResult&gt;
P
panqiangbiao 已提交
1762 1763 1764

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

P
panqiangbiao 已提交
1765
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1766

P
panqiangbiao 已提交
1767
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1768 1769 1770

**参数**

P
panqiangbiao 已提交
1771 1772 1773
| 参数    | 类型                                     | 必填 | 说明         |
| ------- | ---------------------------------------- | ---- | ------------ |
| options | [MediaFetchOptions](#mediafetchoptions8) | 否   | 媒体检索选项 |
P
panqiangbiao 已提交
1774 1775 1776

**返回值**

P
panqiangbiao 已提交
1777 1778 1779
| 类型                                          | 说明                    |
| --------------------------------------------- | ----------------------- |
| Promise<[FetchFileResult](#fetchfileresult8)> | 返回FetchFileResult对象 |
P
panqiangbiao 已提交
1780 1781 1782 1783

**示例**

```
P
panqiangbiao 已提交
1784
async function example() {
P
panqiangbiao 已提交
1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
    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 已提交
1797 1798
```

P
panqiangbiao 已提交
1799
## PeerInfo<sup>8+</sup>
P
panqiangbiao 已提交
1800

P
panqiangbiao 已提交
1801
注册设备信息。
P
panqiangbiao 已提交
1802

P
panqiangbiao 已提交
1803 1804
| 名称       | 类型       | 可读 | 可写 | 说明           |
| ---------- | ---------- | ---- | ---- | -------------- |
P
panqiangbiao 已提交
1805 1806
| deviceName | string     | 是   | 否   | 注册设备名称   |
| networkId  | string     | 是   | 否   | 注册设备网络ID |
P
panqiangbiao 已提交
1807 1808
| deviceType | DeviceType | 是   | 否   | 设备类型       |
| isOnline   | boolean    | 是   | 否   | 是否在线       |
P
panqiangbiao 已提交
1809 1810 1811 1812 1813 1814 1815 1816



MediaType
---------

枚举,媒体类型。

P
panqiangbiao 已提交
1817 1818 1819 1820 1821 1822
| 名称  | 默认值 | 描述 |
| ----- | ------ | ---- |
| FILE  | 0      | 文件 |
| IMAGE | 1      | 图片 |
| VIDEO | 2      | 视频 |
| AUDIO | 3      | 音频 |
P
panqiangbiao 已提交
1823 1824 1825 1826 1827 1828

FileKey
-------

枚举,文件关键信息。

P
panqiangbiao 已提交
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849
| 名称          | 默认值              | 描述                                                       |
| ------------- | ------------------- | ---------------------------------------------------------- |
| 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         | 专辑                                                       |
| DURATION      | duration            | 持续时间(单位:秒)                                       |
| WIDTH         | width               | 图片宽度(单位:像素)                                     |
| HEIGHT        | height              | 图片高度(单位:像素)                                     |
| ORIENTATION   | orientation         | 图片显示方向,即顺时针旋转角度,如0,90,180。(单位:度) |
| ALBUM_ID      | bucket_id           | 文件所归属的相册编号                                       |
| ALBUM_NAME    | bucket_display_name | 文件所归属相册名称                                         |
P
panqiangbiao 已提交
1850 1851 1852 1853 1854 1855

DirectoryType
-------------

枚举,目录类型。

P
panqiangbiao 已提交
1856 1857 1858 1859 1860 1861 1862 1863
| 名称          | 默认值 | 描述               |
| ------------- | ------ | ------------------ |
| DIR_CAMERA    | 0      | 表示Camera文件路径 |
| DIR_VIDEO     | 1      | 表示视频路径       |
| DIR_IMAGE     | 2      | 表示图片路径       |
| DIR_AUDIO     | 3      | 表示音频路径       |
| DIR_DOCUMENTS | 4      | 表示文档路径       |
| DIR_DOWNLOAD  | 5      | 表示下载路径       |
P
panqiangbiao 已提交
1864

P
panqiangbiao 已提交
1865
DeviceType
P
panqiangbiao 已提交
1866 1867 1868 1869
-----------

枚举,设备类型。

P
panqiangbiao 已提交
1870 1871 1872 1873 1874 1875 1876 1877 1878
| 名称         | 默认值 | 描述       |
| ------------ | ------ | ---------- |
| TYPE_UNKNOWN | 0      | 未识别设备 |
| TYPE_LAPTOP  | 1      | 笔记本电脑 |
| TYPE_PHONE   | 2      | 手机       |
| TYPE_TABLET  | 3      | 平板电脑   |
| TYPE_WATCH   | 4      | 智能手表   |
| TYPE_CAR     | 5      | 车载设备   |
| TYPE_TV      | 6      | 电视设备   |
P
panqiangbiao 已提交
1879

P
panqiangbiao 已提交
1880
## MediaFetchOptions<sup>8+</sup>
P
panqiangbiao 已提交
1881 1882 1883

检索条件。

P
panqiangbiao 已提交
1884 1885 1886
| 名称          | 类型          | 可读 | 可写 |  必填 |说明             |
| ------------- | ------------- | ---- | ---- |  ---- |---------------- |
| selections    | string        | 是   | 是   |是   | 检索条件         |
P
panqiangbiao 已提交
1887
| selectionArgs | Array&lt;string&gt; | 是   | 是   |是   | 检索条件的值     |
P
panqiangbiao 已提交
1888 1889 1890 1891
| order         | string        | 是   | 是   | 否   |检索结果排序方式 |
| uri           | string        | 是   | 是   | 否   |文件URI          |
| networkId     | string        | 是   | 是   | 否   |注册设备网络ID   |
| extendArgs    | string        | 是   | 是   | 否   |扩展的检索参数   |
P
panqiangbiao 已提交
1892

P
panqiangbiao 已提交
1893
## Size<sup>8+</sup>
P
panqiangbiao 已提交
1894 1895 1896

图片尺寸。

P
panqiangbiao 已提交
1897 1898 1899 1900
| 名称   | 类型   | 可读 | 可写 | 说明             |
| ------ | ------ | ---- | ---- | ---------------- |
| width  | number | 是   | 是   | 宽(单位:像素) |
| height | number | 是   | 是   | 高(单位:像素) |
P
panqiangbiao 已提交
1901