js-apis-medialibrary.md 79.5 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
```
P
panqiangbiao 已提交
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

**示例:**

```
P
panqiangbiao 已提交
34
import featureAbility from '@ohos.ability.featureAbility';
P
panqiangbiao 已提交
35

P
panqiangbiao 已提交
36
var context = featureAbility.getContext()
P
panqiangbiao 已提交
37
var media = mediaLibrary.getMediaLibrary(context);
P
panqiangbiao 已提交
38
```
Z
zengyawen 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
## mediaLibrary.getMediaLibrary

getMediaLibrary(): MediaLibrary

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

> **说明**: 从API Version 8开始,该接口不再维护,推荐使用新接口[mediaLibrary.getMediaLibrary<sup>8+</sup>](medialibrarygetmedialibrary8)。

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

**返回值:**

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

**示例:**

```js
import featureAbility from '@ohos.ability.featureAbility';

var context = featureAbility.getContext()
var media = mediaLibrary.getMediaLibrary();
```

P
panqiangbiao 已提交
64
## MediaLibrary
P
panqiangbiao 已提交
65

Z
zengyawen 已提交
66
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
67 68


P
panqiangbiao 已提交
69
getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void 
P
panqiangbiao 已提交
70 71 72

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

P
panqiangbiao 已提交
73
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
74

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

P
panqiangbiao 已提交
77 78
**参数:**

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

**示例:**

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

P
panqiangbiao 已提交
106
getFileAssets(options: MediaFetchOptions): Promise&lt;FetchFileResult&gt;
P
panqiangbiao 已提交
107 108 109

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

P
panqiangbiao 已提交
110
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
111

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

P
panqiangbiao 已提交
114 115
**参数:**

Z
zengyawen 已提交
116 117 118
| 参数名  | 类型                                     | 必填 | 说明         |
| ------- | ---------------------------------------- | ---- | ------------ |
| options | [MediaFetchOptions](#mediafetchoptions7) | 是   | 文件检索选项 |
P
panqiangbiao 已提交
119 120 121

**返回值**

Z
zengyawen 已提交
122 123 124
| 类型                                 | 说明           |
| ------------------------------------ | -------------- |
| [FetchFileResult](#fetchfileresult7) | 文件数据结果集 |
P
panqiangbiao 已提交
125 126 127 128

**示例:**

```
P
panqiangbiao 已提交
129 130 131 132 133 134
let fileKeyObj = mediaLibrary.FileKey
let imageType = mediaLibrary.MediaType.IMAGE
let imagesfetchOp = {
    selections: fileKeyObj.MEDIA_TYPE + '= ?',
    selectionArgs: [imageType.toString()],
};
P
panqiangbiao 已提交
135
mediaLibrary.getFileAssets(imagesfetchOp).then(function(fetchFileResult){
P
panqiangbiao 已提交
136 137 138 139
    console.info("getFileAssets successfully:"+ JSON.stringify(dir));
}).catch(function(err){
    console.info("getFileAssets failed with error:"+ err);
});
P
panqiangbiao 已提交
140 141
```

P
panqiangbiao 已提交
142
### on<sup>8+</sup>
P
panqiangbiao 已提交
143

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

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

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

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

H
HelloCrease 已提交
152 153 154 155
| 参数名      | 类型                   | 必填   | 说明                                       |
| -------- | -------------------- | ---- | ---------------------------------------- |
| 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 已提交
156 157 158 159

**示例:**

```
P
panqiangbiao 已提交
160
mediaLibrary.on('imageChange', () => {
P
panqiangbiao 已提交
161
    // image file had changed, do something
P
panqiangbiao 已提交
162 163
})
```
P
panqiangbiao 已提交
164
### off<sup>8+</sup>
P
panqiangbiao 已提交
165

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

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

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

P
panqiangbiao 已提交
172 173
**参数:**

H
HelloCrease 已提交
174 175 176 177
| 参数名      | 类型                   | 必填   | 说明                                       |
| -------- | -------------------- | ---- | ---------------------------------------- |
| 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 已提交
178 179 180 181

**示例:**

```
P
panqiangbiao 已提交
182
mediaLibrary.off('imageChange', () => {
P
panqiangbiao 已提交
183
    // stop listening success
P
panqiangbiao 已提交
184 185 186
})
```

P
panqiangbiao 已提交
187
### createAsset <sup>8+</sup>
P
panqiangbiao 已提交
188

P
panqiangbiao 已提交
189
createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
190 191 192

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

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

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

P
panqiangbiao 已提交
197 198
**参数:**

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

**示例:**

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

P
panqiangbiao 已提交
224
### createAsset<sup>8+</sup>
P
panqiangbiao 已提交
225

P
panqiangbiao 已提交
226
createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
227 228 229

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

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

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

P
panqiangbiao 已提交
234 235
**参数:**

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

**返回值**

Z
zengyawen 已提交
244 245 246
| 类型                     | 说明              |
| ------------------------ | ----------------- |
| [FileAsset](#fileasset7) | 媒体数据FileAsset |
P
panqiangbiao 已提交
247 248 249 250

**示例:**

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

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

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

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

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

**参数:**

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

**示例:**

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

P
panqiangbiao 已提交
292
### getPublicDirectory<sup>8+</sup>
P
panqiangbiao 已提交
293

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

P
panqiangbiao 已提交
296
获取公共目录路径,使用Promise方式返回结果。
P
panqiangbiao 已提交
297 298 299 300 301

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

**参数:**

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

**返回值:**

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

**示例:**

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

Z
zengyawen 已提交
326
### getAlbums<sup>7+</sup>
P
panqiangbiao 已提交
327

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

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

P
panqiangbiao 已提交
332
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
333

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

P
panqiangbiao 已提交
336 337
**参数**

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

**示例:**

```
P
panqiangbiao 已提交
346 347 348 349
let AlbumNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
};
P
panqiangbiao 已提交
350
mediaLibrary.getAlbums(AlbumNoArgsfetchOp, (err, albumList) => {
P
panqiangbiao 已提交
351 352 353 354 355 356 357
    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 已提交
358
})
P
panqiangbiao 已提交
359 360
```

Z
zengyawen 已提交
361
### getAlbums<sup>7+</sup>
P
panqiangbiao 已提交
362

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

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

P
panqiangbiao 已提交
367
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
368

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

P
panqiangbiao 已提交
371 372
**参数:**

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

**返回值:**

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

**示例:**

```
P
panqiangbiao 已提交
386 387 388 389
let AlbumNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
};
P
panqiangbiao 已提交
390
mediaLibrary.getAlbums(AlbumNoArgsfetchOp).then(function(albumList){
P
panqiangbiao 已提交
391 392 393 394
    console.info("getAlbums successfully:"+ JSON.stringify(albumList));
}).catch(function(err){
    console.info("getAlbums failed with error:"+ err);
});
P
panqiangbiao 已提交
395 396
```

P
panqiangbiao 已提交
397
### release<sup>8+</sup>
P
panqiangbiao 已提交
398

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

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

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

P
panqiangbiao 已提交
406 407
**参数:**

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

**示例:**

```
P
panqiangbiao 已提交
415
var media = mediaLibrary.getMediaLibrary(context);
P
panqiangbiao 已提交
416
media.release((err) => {
P
panqiangbiao 已提交
417
    // do something
P
panqiangbiao 已提交
418
});
P
panqiangbiao 已提交
419 420
```

P
panqiangbiao 已提交
421
### release<sup>8+</sup>
P
panqiangbiao 已提交
422

P
panqiangbiao 已提交
423
release(): Promise&lt;void&gt;
P
panqiangbiao 已提交
424

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

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

P
panqiangbiao 已提交
430 431
**返回值:**

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

**示例:**

```
P
panqiangbiao 已提交
439 440
var media = mediaLibrary.getMediaLibrary(context);
media.release()
P
panqiangbiao 已提交
441 442
```

P
panqiangbiao 已提交
443 444 445 446 447 448 449 450 451 452 453 454
### storeMediaAsset

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

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

**参数:**

H
HelloCrease 已提交
455 456 457 458
| 参数名      | 类型                                    | 必填   | 说明                      |
| -------- | ------------------------------------- | ---- | ----------------------- |
| option   | [MediaAssetOption](#mediaassetoption) | 是    | 媒体资源选项。                 |
| callback | AsyncCallback&lt;string&gt;           | 是    | 媒体资源保存回调,返回保存成功后得到的URI。 |
P
panqiangbiao 已提交
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490

**示例:**

  ```
let option = {
    src : "file:///data/data/ohos.xxx.yyy/files/image.png",
    mimeType : "image/jpeg",
    relativePath : "imageDir/image2/"
};
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.
});
  ```


### storeMediaAsset

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

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

**参数:**

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

**返回值:**

H
HelloCrease 已提交
497 498
| 类型                    | 说明                           |
| --------------------- | ---------------------------- |
P
panqiangbiao 已提交
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
| Promise&lt;string&gt; | Promise实例,用于异步获取保存成功后得到的URI。 |

**示例:**

  ```
let option = {
    src : "file:///data/data/ohos.xxx.yyy/files/image.jpg",
    mimeType : "image/jpeg",
    relativePath : "imageDir/image2/"
};
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.");
});
  ```


### startImagePreview

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

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

**参数:**

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

**示例:**

  ```
let images = [
    "dataability:///media/external/images/media/50",
    "dataability:///media/external/images/media/55"
];
H
HelloCrease 已提交
543
/* 网络图片使用方式
P
panqiangbiao 已提交
544 545 546 547
let images = [
    "https://media.xxxx.com/image1.jpg",
    "https://media.xxxx.com/image2.jpg"
];
H
HelloCrease 已提交
548
*/
P
panqiangbiao 已提交
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
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.");
});
  ```


### startImagePreview

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

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

**参数:**

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

**示例:**

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


### startImagePreview

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

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

**参数:**

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

**返回值:**

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

**示例:**

  ```
let images = [
    "dataability:///media/external/images/media/50",
    "dataability:///media/external/images/media/55"
];
H
HelloCrease 已提交
630
/* 网络图片使用方式
P
panqiangbiao 已提交
631 632 633 634
let images = [
    "https://media.xxxx.com/image1.jpg",
    "https://media.xxxx.com/image2.jpg"
];
H
HelloCrease 已提交
635
*/
P
panqiangbiao 已提交
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
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.");
});
  ```


### startMediaSelect

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

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

**参数:**

H
HelloCrease 已提交
657 658 659 660
| 参数名      | 类型                                       | 必填   | 说明                                   |
| -------- | ---------------------------------------- | ---- | ------------------------------------ |
| option   | [MediaSelectOption](#mediaselectoption)  | 是    | 媒体选择选项。                              |
| callback | AsyncCallback&lt;Array&lt;string&gt;&gt; | 是    | 媒体选择回调,返回选择的媒体URI(dataability://)列表。 |
P
panqiangbiao 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691

**示例:**

  ```
let option = {
    type : "image",
    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.
});
  ```


### startMediaSelect

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

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

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

**参数:**

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

**返回值:**

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

**示例:**

  ```
let option = {
    type : "image",
    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 已提交
718
## FileAsset<sup>7+</sup>
P
panqiangbiao 已提交
719 720 721

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

Z
zengyawen 已提交
722 723 724
### 属性

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

Z
zengyawen 已提交
726 727 728 729 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  单位:度) |
| duration<sup>8+</sup>     | number                   | 是   | 否   | 持续时间(单位:秒)                                   |
| albumId                   | number                   | 是   | 否   | 文件所归属的相册编号                                   |
| albumUri<sup>8+</sup>     | string                   | 是   | 否   | 文件所归属相册uri                                      |
| albumName                 | string                   | 是   | 否   | 文件所归属相册名称                                     |
P
panqiangbiao 已提交
749 750 751


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

P
panqiangbiao 已提交
753
isDirectory(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
754 755 756

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

P
panqiangbiao 已提交
757
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
758

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

P
panqiangbiao 已提交
761 762
**参数:**

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

**示例:**

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

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

P
panqiangbiao 已提交
788
isDirectory():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
789 790 791

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

P
panqiangbiao 已提交
792
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
793

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

P
panqiangbiao 已提交
796 797
**返回值:**

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

**示例:**

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

P
panqiangbiao 已提交
823
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
824

P
panqiangbiao 已提交
825
commitModify(callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
826 827 828

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

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

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

P
panqiangbiao 已提交
833 834
**参数:**

H
HelloCrease 已提交
835 836 837
| 参数名      | 类型                        | 必填   | 说明    |
| -------- | ------------------------- | ---- | ----- |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空 |
P
panqiangbiao 已提交
838 839 840 841

**示例:**

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

P
panqiangbiao 已提交
859
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
860

P
panqiangbiao 已提交
861
commitModify(): Promise&lt;void&gt;
P
panqiangbiao 已提交
862 863 864

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

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

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

P
panqiangbiao 已提交
869 870
**返回值:**

H
HelloCrease 已提交
871 872
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
873
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
874 875 876 877

**示例:**

```
P
panqiangbiao 已提交
878
async function example() {
P
panqiangbiao 已提交
879 880 881 882
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
883 884
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
885 886 887
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
P
panqiangbiao 已提交
888
    asset.title = 'newtitle';
P
panqiangbiao 已提交
889 890
    asset.commitModify();
}
P
panqiangbiao 已提交
891 892
```

P
panqiangbiao 已提交
893
### open<sup>8+</sup>
P
panqiangbiao 已提交
894

P
panqiangbiao 已提交
895
open(mode: string, callback: AsyncCallback&lt;number&gt;): void
P
panqiangbiao 已提交
896 897 898

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

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

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

P
panqiangbiao 已提交
903 904
**参数**

H
HelloCrease 已提交
905 906 907 908
| 参数名      | 类型                          | 必填   | 说明                                  |
| -------- | --------------------------- | ---- | ----------------------------------- |
| mode     | string                      | 是    | 打开文件方式,如:'r'(只读), 'w'(只写), 'rw'(读写) |
| callback | AsyncCallback&lt;number&gt; | 是    | 回调返回文件句柄                            |
P
panqiangbiao 已提交
909 910 911 912

**示例:**

```
P
panqiangbiao 已提交
913
async function example() {
P
panqiangbiao 已提交
914
    let mediaType = mediaLibrary.MediaType.IMAGE;
P
panqiangbiao 已提交
915 916
    let DIR_IMAGE = mediaLibrary.DirectoryType.DIR_IMAGE;
    const path = await media.getPublicDirectory(DIR_IMAGE);
P
panqiangbiao 已提交
917 918 919 920 921 922 923 924 925
    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 已提交
926 927
```

P
panqiangbiao 已提交
928
### open<sup>8+</sup>
P
panqiangbiao 已提交
929

P
panqiangbiao 已提交
930
open(mode: string): Promise&lt;number&gt;
P
panqiangbiao 已提交
931 932 933

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

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

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

P
panqiangbiao 已提交
938 939
**参数:**

H
HelloCrease 已提交
940 941 942
| 参数名  | 类型     | 必填   | 说明                                  |
| ---- | ------ | ---- | ----------------------------------- |
| mode | string | 是    | 打开文件方式,如:'r'(只读), 'w'(只写), 'rw'(读写) |
P
panqiangbiao 已提交
943 944 945

**返回值:**

H
HelloCrease 已提交
946 947
| 类型                    | 说明            |
| --------------------- | ------------- |
P
panqiangbiao 已提交
948
| Promise&lt;number&gt; | Promise返回文件句柄 |
P
panqiangbiao 已提交
949 950 951 952

**示例:**

```
P
panqiangbiao 已提交
953
async function example() {
P
panqiangbiao 已提交
954
    let mediaType = mediaLibrary.MediaType.IMAGE;
P
panqiangbiao 已提交
955 956
    let DIR_IMAGE = mediaLibrary.DirectoryType.DIR_IMAGE;
    const path = await media.getPublicDirectory(DIR_IMAGE);
P
panqiangbiao 已提交
957
    asset = await media.createAsset(mediaType, "image00003.jpg", path);
P
panqiangbiao 已提交
958 959 960 961 962 963 964
    asset.open('rw')
        .then((fd) => {
            console.info('File fd!' + fd);
        })
        .catch((err) => {
            console.info('File err!' + err);
        });
P
panqiangbiao 已提交
965
}
P
panqiangbiao 已提交
966 967
```

P
panqiangbiao 已提交
968
### close<sup>8+</sup>
P
panqiangbiao 已提交
969

P
panqiangbiao 已提交
970
close(fd: number, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
971 972 973

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

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

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

P
panqiangbiao 已提交
978 979
**参数:**

H
HelloCrease 已提交
980 981 982 983
| 参数名      | 类型                        | 必填   | 说明    |
| -------- | ------------------------- | ---- | ----- |
| fd       | number                    | 是    | 文件描述符 |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空 |
P
panqiangbiao 已提交
984 985 986 987

**示例:**

```
P
panqiangbiao 已提交
988
async function example() {
P
panqiangbiao 已提交
989 990 991 992
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
993 994
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
995 996 997 998 999
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.close(fd, (closeErr) => {
        if (closeErr != undefined) {
P
panqiangbiao 已提交
1000 1001
            console.info('mediaLibraryTest : close : FAIL ' + closeErr.message);
            console.info('mediaLibraryTest : ASSET_CALLBACK : FAIL');
P
panqiangbiao 已提交
1002 1003 1004 1005 1006
        } else {
            console.info("=======asset.close success====>");
        }
    });
}
P
panqiangbiao 已提交
1007 1008
```

P
panqiangbiao 已提交
1009
### close<sup>8+</sup>
P
panqiangbiao 已提交
1010

P
panqiangbiao 已提交
1011
close(fd: number): Promise&lt;void&gt;
P
panqiangbiao 已提交
1012 1013 1014

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

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

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

P
panqiangbiao 已提交
1019 1020
**参数:**

H
HelloCrease 已提交
1021 1022 1023
| 参数名  | 类型     | 必填   | 说明    |
| ---- | ------ | ---- | ----- |
| fd   | number | 是    | 文件描述符 |
P
panqiangbiao 已提交
1024 1025 1026

**返回值:**

H
HelloCrease 已提交
1027 1028
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
1029
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1030 1031 1032 1033

**示例:**

```
P
panqiangbiao 已提交
1034
async function example() {
P
panqiangbiao 已提交
1035 1036 1037 1038
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1039 1040
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1041 1042 1043 1044 1045
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.close(fd).then((closeErr) => {
        if (closeErr != undefined) {
P
panqiangbiao 已提交
1046 1047
            console.info('mediaLibraryTest : close : FAIL ' + closeErr.message);
            console.info('mediaLibraryTest : ASSET_CALLBACK : FAIL');
P
panqiangbiao 已提交
1048 1049 1050 1051 1052 1053

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

P
panqiangbiao 已提交
1056
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
1057

P
panqiangbiao 已提交
1058
getThumbnail(callback: AsyncCallback&lt;image.PixelMap&gt;): void
P
panqiangbiao 已提交
1059 1060 1061

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

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

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

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

H
HelloCrease 已提交
1068 1069 1070
| 参数名      | 类型                                  | 必填   | 说明               |
| -------- | ----------------------------------- | ---- | ---------------- |
| callback | AsyncCallback&lt;image.PixelMap&gt; | 是    | 回调返回缩略图的PixelMap |
P
panqiangbiao 已提交
1071 1072 1073 1074

**示例:**

```
P
panqiangbiao 已提交
1075
async function example() {
P
panqiangbiao 已提交
1076 1077 1078 1079
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1080 1081
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1082 1083 1084 1085
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail((err, pixelmap) => {
P
panqiangbiao 已提交
1086
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
1087 1088
    });
}
P
panqiangbiao 已提交
1089 1090
```

P
panqiangbiao 已提交
1091
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
1092

P
panqiangbiao 已提交
1093
getThumbnail(size: Size, callback: AsyncCallback&lt;image.PixelMap&gt;): void
P
panqiangbiao 已提交
1094 1095 1096

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

P
panqiangbiao 已提交
1097
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1098

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

P
panqiangbiao 已提交
1101 1102
**参数:**

H
HelloCrease 已提交
1103 1104 1105 1106
| 参数名      | 类型                                  | 必填   | 说明               |
| -------- | ----------------------------------- | ---- | ---------------- |
| size     | [Size](#size8)                      | 是    | 缩略图尺寸            |
| callback | AsyncCallback&lt;image.PixelMap&gt; | 是    | 回调返回缩略图的PixelMap |
P
panqiangbiao 已提交
1107 1108 1109 1110

**示例:**

```
P
panqiangbiao 已提交
1111
async function example() {
P
panqiangbiao 已提交
1112 1113 1114 1115
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1116 1117
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1118 1119 1120 1121
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail(size, (err, pixelmap) => {
P
panqiangbiao 已提交
1122
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
1123 1124
    });
}
P
panqiangbiao 已提交
1125 1126
```

P
panqiangbiao 已提交
1127
### getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
1128

P
panqiangbiao 已提交
1129
getThumbnail(size?: Size): Promise&lt;image.PixelMap&gt;
P
panqiangbiao 已提交
1130 1131 1132

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

P
panqiangbiao 已提交
1133
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1134

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

P
panqiangbiao 已提交
1137 1138
**参数:**

H
HelloCrease 已提交
1139 1140 1141
| 参数名  | 类型             | 必填   | 说明    |
| ---- | -------------- | ---- | ----- |
| size | [Size](#size8) | 否    | 缩略图尺寸 |
P
panqiangbiao 已提交
1142 1143 1144

**返回值:**

H
HelloCrease 已提交
1145 1146
| 类型                            | 说明                    |
| ----------------------------- | --------------------- |
P
panqiangbiao 已提交
1147
| Promise&lt;image.PixelMap&gt; | Promise返回缩略图的PixelMap |
P
panqiangbiao 已提交
1148 1149 1150 1151

**示例:**

```
P
panqiangbiao 已提交
1152
async function example() {
P
panqiangbiao 已提交
1153 1154 1155 1156
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1157 1158
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1159 1160 1161 1162
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail(size, (err, pixelmap) => {
P
panqiangbiao 已提交
1163
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
1164 1165
    });
}
P
panqiangbiao 已提交
1166 1167
```

P
panqiangbiao 已提交
1168
### favorite<sup>8+</sup>
P
panqiangbiao 已提交
1169

P
panqiangbiao 已提交
1170
favorite(isFavorite: boolean, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
1171 1172 1173

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

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

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

P
panqiangbiao 已提交
1178 1179
**参数:**

H
HelloCrease 已提交
1180 1181 1182 1183
| 参数名        | 类型                        | 必填   | 说明                                 |
| ---------- | ------------------------- | ---- | ---------------------------------- |
| isFavorite | boolean                   | 是    | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
| callback   | AsyncCallback&lt;void&gt; | 是    | 回调返回空                              |
P
panqiangbiao 已提交
1184 1185 1186 1187

**示例:**

```
P
panqiangbiao 已提交
1188
async function example() {
P
panqiangbiao 已提交
1189 1190 1191 1192
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1193 1194
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1195 1196 1197 1198 1199 1200 1201
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.favorite(true,function(err){
        // do something
    });
}
P
panqiangbiao 已提交
1202 1203
```

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

P
panqiangbiao 已提交
1206
favorite(isFavorite: boolean): Promise&lt;void&gt;
P
panqiangbiao 已提交
1207 1208 1209

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

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

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

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

H
HelloCrease 已提交
1216 1217 1218
| 参数名        | 类型      | 必填   | 说明                                 |
| ---------- | ------- | ---- | ---------------------------------- |
| isFavorite | boolean | 是    | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
P
panqiangbiao 已提交
1219 1220 1221

**返回值:**

H
HelloCrease 已提交
1222 1223
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
1224
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1225 1226 1227 1228

**示例:**

```
P
panqiangbiao 已提交
1229
async function example() {
P
panqiangbiao 已提交
1230 1231 1232 1233
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1234 1235
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1236 1237 1238 1239 1240 1241 1242 1243 1244
    };
    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 已提交
1245 1246
```

P
panqiangbiao 已提交
1247
### isFavorite<sup>8+</sup>
P
panqiangbiao 已提交
1248

P
panqiangbiao 已提交
1249
isFavorite(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
1250 1251 1252

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

P
panqiangbiao 已提交
1253
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1254

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

P
panqiangbiao 已提交
1257 1258
**参数:**

H
HelloCrease 已提交
1259 1260 1261
| 参数名      | 类型                           | 必填   | 说明          |
| -------- | ---------------------------- | ---- | ----------- |
| callback | AsyncCallback&lt;boolean&gt; | 是    | 回调表示是否为收藏文件 |
P
panqiangbiao 已提交
1262 1263 1264 1265

**示例:**

```
P
panqiangbiao 已提交
1266
async function example() {
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 1282 1283
    };
    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 已提交
1284 1285
```

P
panqiangbiao 已提交
1286
### isFavorite<sup>8+</sup>
P
panqiangbiao 已提交
1287

P
panqiangbiao 已提交
1288
isFavorite():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
1289 1290 1291

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

P
panqiangbiao 已提交
1292
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1293

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

P
panqiangbiao 已提交
1296 1297
**返回值:**

H
HelloCrease 已提交
1298 1299
| 类型                     | 说明                 |
| ---------------------- | ------------------ |
P
panqiangbiao 已提交
1300
| Promise&lt;boolean&gt; | Promise回调表示是否是收藏文件 |
P
panqiangbiao 已提交
1301 1302 1303 1304

**示例:**

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

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

A
AOL 已提交
1325
trash(isTrash: boolean, callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
1326 1327 1328

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

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

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

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

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

H
HelloCrease 已提交
1337 1338 1339 1340
| 参数名      | 类型                        | 必填   | 说明        |
| -------- | ------------------------- | ---- | --------- |
| isTrash  | boolean                   | 是    | 是否设置为垃圾文件 |
| callback | AsyncCallback&lt;void&gt; | 是    | 回调返回空     |
P
panqiangbiao 已提交
1341 1342 1343 1344

**示例:**

```
P
panqiangbiao 已提交
1345
async function example() {
P
panqiangbiao 已提交
1346 1347 1348 1349
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1350 1351
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1352 1353 1354 1355 1356
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.trash(true, trashCallBack);
    function trashCallBack(err, trash) {
P
panqiangbiao 已提交
1357
        console.info('mediaLibraryTest : ASSET_CALLBACK ASSET_CALLBACK trash');
P
panqiangbiao 已提交
1358
    }
P
panqiangbiao 已提交
1359
}
P
panqiangbiao 已提交
1360 1361
```

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

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

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

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
| 参数名     | 类型      | 必填   | 说明        |
| ------- | ------- | ---- | --------- |
| isTrash | boolean | 是    | 是否设置为垃圾文件 |
P
panqiangbiao 已提交
1379 1380 1381

**返回值:**

H
HelloCrease 已提交
1382 1383
| 类型                  | 说明         |
| ------------------- | ---------- |
P
panqiangbiao 已提交
1384
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1385 1386 1387 1388

**示例:**

```
P
panqiangbiao 已提交
1389
async function example() {
P
panqiangbiao 已提交
1390 1391 1392 1393
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1394 1395
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1396 1397 1398 1399 1400 1401 1402 1403 1404
    };
    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 已提交
1405 1406
```

P
panqiangbiao 已提交
1407
### isTrash<sup>8+</sup>
P
panqiangbiao 已提交
1408

P
panqiangbiao 已提交
1409
isTrash(callback: AsyncCallback&lt;boolean&gt;): void
P
panqiangbiao 已提交
1410 1411 1412

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

P
panqiangbiao 已提交
1413
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1414

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

P
panqiangbiao 已提交
1417 1418
**参数:**

H
HelloCrease 已提交
1419 1420 1421
| 参数名      | 类型                           | 必填   | 说明              |
| -------- | ---------------------------- | ---- | --------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是    | 回调返回表示文件是否为垃圾文件 |
P
panqiangbiao 已提交
1422 1423 1424 1425

**示例:**

```
P
panqiangbiao 已提交
1426
async function example() {
P
panqiangbiao 已提交
1427 1428 1429 1430
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1431 1432
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1433 1434 1435 1436 1437 1438
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isTrash(isTrashCallBack);
    function isTrashCallBack(err, isTrash) {
            if (isTrash == true) {
P
panqiangbiao 已提交
1439
                console.info('mediaLibraryTest : ASSET_CALLBACK ASSET_CALLBACK isTrash = ' + isTrash);
P
panqiangbiao 已提交
1440 1441 1442
                asset.trash(true, trashCallBack);

            } else {
P
panqiangbiao 已提交
1443 1444
                console.info('mediaLibraryTest : ASSET_CALLBACK isTrash Unsuccessfull = ' + err);
                console.info('mediaLibraryTest : ASSET_CALLBACK isTrash : FAIL');
P
panqiangbiao 已提交
1445 1446

            }
P
panqiangbiao 已提交
1447
    }
P
panqiangbiao 已提交
1448
}
P
panqiangbiao 已提交
1449 1450
```

P
panqiangbiao 已提交
1451
### isTrash<sup>8+</sup>
P
panqiangbiao 已提交
1452

P
panqiangbiao 已提交
1453
isTrash():Promise&lt;boolean&gt;
P
panqiangbiao 已提交
1454

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

P
panqiangbiao 已提交
1457
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1458

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

P
panqiangbiao 已提交
1461 1462
**返回值:**

H
HelloCrease 已提交
1463 1464
| 类型                  | 说明                   |
| ------------------- | -------------------- |
P
panqiangbiao 已提交
1465
| Promise&lt;void&gt; | Promise回调表示文件是否为垃圾文件 |
P
panqiangbiao 已提交
1466 1467 1468 1469

**示例:**

```
P
panqiangbiao 已提交
1470
async function example() {
P
panqiangbiao 已提交
1471 1472 1473 1474
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1475 1476
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1477 1478 1479 1480 1481 1482 1483 1484 1485
    };
    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 已提交
1486 1487
```

Z
zengyawen 已提交
1488
## FetchFileResult<sup>7+</sup>
P
panqiangbiao 已提交
1489 1490 1491

文件检索结果集。

Z
zengyawen 已提交
1492
### getCount<sup>7+</sup>
P
panqiangbiao 已提交
1493

P
panqiangbiao 已提交
1494
getCount(): number
P
panqiangbiao 已提交
1495 1496 1497

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

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

P
panqiangbiao 已提交
1500 1501
**返回值**

H
HelloCrease 已提交
1502 1503
| 类型     | 说明       |
| ------ | -------- |
P
panqiangbiao 已提交
1504
| number | 检索到的文件总数 |
P
panqiangbiao 已提交
1505 1506 1507 1508

**示例**

```
P
panqiangbiao 已提交
1509
async function example() {
P
panqiangbiao 已提交
1510 1511 1512
    let getFileCountOneOp = {
        selections: fileKeyObj.MEDIA_TYPE + '= ?',
        selectionArgs: [fileType.toString()],
P
panqiangbiao 已提交
1513 1514
        order: fileKeyObj.DATE_ADDED + " DESC",
        extendArgs: "",
P
panqiangbiao 已提交
1515 1516 1517 1518
    };
    let fetchFileResult = await media.getFileAssets(getFileCountOneOp);
    const fetchCount = fetchFileResult.getCount();
}
P
panqiangbiao 已提交
1519 1520
```

Z
zengyawen 已提交
1521
### isAfterLast<sup>7+</sup>
P
panqiangbiao 已提交
1522

P
panqiangbiao 已提交
1523
isAfterLast(): boolean
P
panqiangbiao 已提交
1524 1525 1526

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

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

P
panqiangbiao 已提交
1529 1530
**返回值**

H
HelloCrease 已提交
1531 1532
| 类型      | 说明                                 |
| ------- | ---------------------------------- |
P
panqiangbiao 已提交
1533
| boolean | 当读到最后一条记录后,后续没有记录返回true,否则返回false。 |
P
panqiangbiao 已提交
1534 1535 1536 1537

**示例**

```
P
panqiangbiao 已提交
1538
async function example() {
P
panqiangbiao 已提交
1539 1540 1541 1542
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1543 1544
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1545 1546 1547
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
1548
    console.info('mediaLibraryTest : count:' + fetchCount);
P
panqiangbiao 已提交
1549 1550 1551 1552
    let fileAsset = await fetchFileResult.getFirstObject();
    for (var i = 1; i < fetchCount; i++) {
            fileAsset = await fetchFileResult.getNextObject();
            if(i == fetchCount - 1) {
P
panqiangbiao 已提交
1553
              console.info('mediaLibraryTest : isLast');
P
panqiangbiao 已提交
1554
              var result = fetchFileResult.isAfterLast();
P
panqiangbiao 已提交
1555 1556
              console.info('mediaLibraryTest : isAfterLast:' + result);
              console.info('mediaLibraryTest : isAfterLast end');
P
panqiangbiao 已提交
1557
              fetchFileResult.close();
P
panqiangbiao 已提交
1558

P
panqiangbiao 已提交
1559 1560
            }
    }
P
panqiangbiao 已提交
1561
}
P
panqiangbiao 已提交
1562 1563
```

Z
zengyawen 已提交
1564
### close<sup>7+</sup>
P
panqiangbiao 已提交
1565

P
panqiangbiao 已提交
1566
close(): void
P
panqiangbiao 已提交
1567 1568 1569

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

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

P
panqiangbiao 已提交
1572 1573 1574
**示例**

```
P
panqiangbiao 已提交
1575
async function example() {
P
panqiangbiao 已提交
1576 1577 1578 1579
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1580 1581
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1582 1583 1584 1585
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.close();
}
P
panqiangbiao 已提交
1586 1587
```

Z
zengyawen 已提交
1588
### getFirstObject<sup>7+</sup>
P
panqiangbiao 已提交
1589

P
panqiangbiao 已提交
1590
getFirstObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1591 1592 1593

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

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

P
panqiangbiao 已提交
1596 1597
**参数**

Z
zengyawen 已提交
1598 1599 1600
| 参数名   | 类型                                          | 必填 | 说明                                        |
| -------- | --------------------------------------------- | ---- | ------------------------------------------- |
| callback | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步获取结果集中第一个FileAsset完成后的回调 |
P
panqiangbiao 已提交
1601 1602 1603 1604

**示例**

```
P
panqiangbiao 已提交
1605
async function example() {
P
panqiangbiao 已提交
1606 1607 1608 1609
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1610 1611
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getFirstObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1622 1623
```

Z
zengyawen 已提交
1624
### getFirstObject<sup>7+</sup>
P
panqiangbiao 已提交
1625

P
panqiangbiao 已提交
1626
getFirstObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1627

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

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

P
panqiangbiao 已提交
1632 1633
**返回值**

Z
zengyawen 已提交
1634 1635
| 类型                                    | 说明                       |
| --------------------------------------- | -------------------------- |
Z
zengyawen 已提交
1636
| Promise&lt;[FileAsset](#fileasset7)&gt; | Promise方式返回FileAsset。 |
P
panqiangbiao 已提交
1637 1638 1639 1640

**示例**

```
P
panqiangbiao 已提交
1641
async function example() {
P
panqiangbiao 已提交
1642 1643 1644 1645
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1646 1647
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1648 1649 1650 1651 1652 1653 1654 1655
    };
    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 已提交
1656 1657
```

Z
zengyawen 已提交
1658
### getNextObject<sup>7+</sup>
P
panqiangbiao 已提交
1659

P
panqiangbiao 已提交
1660
 getNextObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1661 1662 1663

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

P
panqiangbiao 已提交
1664
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1665

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

P
panqiangbiao 已提交
1668 1669
**参数**

Z
zengyawen 已提交
1670 1671 1672
| 参数名    | 类型                                          | 必填 | 说明                                      |
| --------- | --------------------------------------------- | ---- | ----------------------------------------- |
| callbacke | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步返回结果集中下一个FileAsset之后的回调 |
P
panqiangbiao 已提交
1673 1674 1675 1676

**示例**

```
P
panqiangbiao 已提交
1677
async function example() {
P
panqiangbiao 已提交
1678 1679 1680 1681
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1682 1683
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getNextObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1694 1695
```

Z
zengyawen 已提交
1696
### getNextObject<sup>7+</sup>
P
panqiangbiao 已提交
1697

P
panqiangbiao 已提交
1698
 getNextObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1699 1700 1701

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

P
panqiangbiao 已提交
1702
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1703

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

P
panqiangbiao 已提交
1706 1707
**返回值**

Z
zengyawen 已提交
1708 1709 1710
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1711 1712 1713 1714

**示例**

```
P
panqiangbiao 已提交
1715
async function example() {
P
panqiangbiao 已提交
1716 1717 1718 1719
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1720 1721
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1722 1723 1724
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
1725
    console.info('mediaLibraryTest : count:' + fetchCount);
P
panqiangbiao 已提交
1726 1727
    fileAsset = await fetchFileResult.getNextObject();
}
P
panqiangbiao 已提交
1728 1729
```

Z
zengyawen 已提交
1730
### getLastObject<sup>7+</sup>
P
panqiangbiao 已提交
1731

P
panqiangbiao 已提交
1732
getLastObject(callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1733 1734 1735

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

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

P
panqiangbiao 已提交
1738 1739
**参数**

Z
zengyawen 已提交
1740 1741
| 参数名   | 类型                                          | 必填 | 说明                        |
| -------- | --------------------------------------------- | ---- | --------------------------- |
Z
zengyawen 已提交
1742
| callback | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是   | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
1743 1744 1745 1746

**示例**

```
P
panqiangbiao 已提交
1747
async function example() {
P
panqiangbiao 已提交
1748 1749 1750 1751
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1752 1753
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1754 1755 1756 1757 1758 1759 1760 1761 1762 1763
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getLastObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1764 1765
```

Z
zengyawen 已提交
1766
### getLastObject<sup>7+</sup>
P
panqiangbiao 已提交
1767

P
panqiangbiao 已提交
1768
getLastObject(): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1769 1770 1771

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

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

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

Z
zengyawen 已提交
1776 1777 1778
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1779 1780 1781 1782

**示例**

```
P
panqiangbiao 已提交
1783
async function example() {
P
panqiangbiao 已提交
1784 1785 1786 1787
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1788 1789
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1790 1791 1792 1793
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    let lastObject = await fetchFileResult.getLastObject();
}
P
panqiangbiao 已提交
1794 1795
```

Z
zengyawen 已提交
1796
### getPositionObject<sup>7+</sup>
P
panqiangbiao 已提交
1797

P
panqiangbiao 已提交
1798
getPositionObject(index: number, callback: AsyncCallback&lt;FileAsset&gt;): void
P
panqiangbiao 已提交
1799 1800 1801

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

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

P
panqiangbiao 已提交
1804 1805
**参数**

Z
zengyawen 已提交
1806
| 参数名       | 类型                                       | 必填   | 说明                 |
H
HelloCrease 已提交
1807 1808
| -------- | ---------------------------------------- | ---- | ------------------ |
| index    | number                                   | 是    | 要获取的文件的索引,从0开始     |
Z
zengyawen 已提交
1809
| callback | AsyncCallback&lt;[FileAsset](#fileasset7)&gt; | 是    | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
1810 1811 1812 1813

**示例**

```
P
panqiangbiao 已提交
1814
async function example() {
P
panqiangbiao 已提交
1815 1816 1817 1818
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1819 1820
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1821 1822
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
P
panqiangbiao 已提交
1823
    fetchFileResult.getPositionObject(0, (err, value) => {
P
panqiangbiao 已提交
1824 1825 1826 1827 1828 1829 1830
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1831 1832
```

Z
zengyawen 已提交
1833
### getPositionObject<sup>7+</sup>
P
panqiangbiao 已提交
1834

P
panqiangbiao 已提交
1835
getPositionObject(index: number): Promise&lt;FileAsset&gt;
P
panqiangbiao 已提交
1836 1837 1838

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

P
panqiangbiao 已提交
1839
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1840

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

P
panqiangbiao 已提交
1843 1844
**参数**

Z
zengyawen 已提交
1845
| 参数名    | 类型     | 必填   | 说明             |
H
HelloCrease 已提交
1846 1847
| ----- | ------ | ---- | -------------- |
| index | number | 是    | 要获取的文件的索引,从0开始 |
P
panqiangbiao 已提交
1848 1849 1850

**返回值**

Z
zengyawen 已提交
1851 1852 1853
| 类型                                    | 说明              |
| --------------------------------------- | ----------------- |
| Promise&lt;[FileAsset](#fileasset7)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1854 1855 1856 1857

**示例**

```
P
panqiangbiao 已提交
1858
async function example() {
P
panqiangbiao 已提交
1859 1860 1861 1862
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1863 1864
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1865 1866
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
P
panqiangbiao 已提交
1867
    fetchFileResult.getPositionObject(1, (err, value) => {
P
panqiangbiao 已提交
1868 1869 1870 1871 1872 1873 1874
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1875 1876
```

Z
zengyawen 已提交
1877
### getAllObject<sup>7+</sup>
P
panqiangbiao 已提交
1878

P
panqiangbiao 已提交
1879
getAllObject(callback: AsyncCallback&lt;Array&lt;FileAsset&gt;&gt;): void
P
panqiangbiao 已提交
1880 1881 1882

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

P
panqiangbiao 已提交
1883
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1884

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

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

Z
zengyawen 已提交
1889
| 参数名       | 类型                                       | 必填   | 说明                   |
H
HelloCrease 已提交
1890
| -------- | ---------------------------------------- | ---- | -------------------- |
Z
zengyawen 已提交
1891
| callback | AsyncCallback<Array<[FileAsset](#fileasset7)>> | 是    | 异步返回FileAsset列表之后的回调 |
P
panqiangbiao 已提交
1892 1893 1894 1895

**示例**

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

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

P
panqiangbiao 已提交
1917
getAllObject(): Promise&lt;Array&lt;FileAsset&gt;&gt;
P
panqiangbiao 已提交
1918 1919 1920

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

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

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

Z
zengyawen 已提交
1925 1926 1927
| 类型                                     | 说明                  |
| ---------------------------------------- | --------------------- |
| Promise<Array<[FileAsset](#fileasset7)>> | 返回FileAsset对象列表 |
P
panqiangbiao 已提交
1928 1929 1930 1931

**示例**

```
P
panqiangbiao 已提交
1932
async function example() {
P
panqiangbiao 已提交
1933 1934 1935 1936
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
P
panqiangbiao 已提交
1937 1938
      order: fileKeyObj.DATE_ADDED + " DESC",
      extendArgs: "",
P
panqiangbiao 已提交
1939 1940 1941 1942
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    var data = fetchFileResult.getAllObject();
}
P
panqiangbiao 已提交
1943 1944
```

Z
zengyawen 已提交
1945
## Album<sup>7+</sup>
P
panqiangbiao 已提交
1946 1947 1948 1949 1950

实体相册

### **属性**

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

Z
zengyawen 已提交
1953
| 名称           | 类型    | 可读   | 可写   | 说明      |
H
HelloCrease 已提交
1954
| ------------ | ------ | ---- | ---- | ------- |
Z
zengyawen 已提交
1955 1956 1957
| albumId | number | 是    | 否    | 相册编号    |
| albumName | string | 是    | 是    | 相册名称    |
| albumUri<sup>8+</sup> | string | 是    | 否    | 相册Uri   |
H
HelloCrease 已提交
1958
| dateModified | number | 是    | 否    | 修改日期    |
Z
zengyawen 已提交
1959 1960 1961
| count<sup>8+</sup> | number | 是    | 否    | 相册中文件数量 |
| relativePath<sup>8+</sup> | string | 是    | 否    | 相对路径    |
| coverUri<sup>8+</sup> | string | 是    | 否    | 封面文件Uri |
P
panqiangbiao 已提交
1962

P
panqiangbiao 已提交
1963 1964 1965
### commitModify<sup>8+</sup>

commitModify(callback: AsyncCallback&lt;void&gt;): void
P
panqiangbiao 已提交
1966 1967 1968

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

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

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

P
panqiangbiao 已提交
1973 1974
**参数**

Z
zengyawen 已提交
1975 1976 1977
| 参数名   | 类型                      | 必填 | 说明       |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |
P
panqiangbiao 已提交
1978 1979 1980 1981

**示例**

```
P
panqiangbiao 已提交
1982
async function example() {
P
panqiangbiao 已提交
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997
    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 已提交
1998 1999
```

P
panqiangbiao 已提交
2000
### commitModify<sup>8+</sup>
P
panqiangbiao 已提交
2001

P
panqiangbiao 已提交
2002
commitModify(): Promise&lt;void&gt;
P
panqiangbiao 已提交
2003 2004 2005

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

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

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

P
panqiangbiao 已提交
2010 2011
**返回值**

H
HelloCrease 已提交
2012 2013
| 类型                  | 说明           |
| ------------------- | ------------ |
P
panqiangbiao 已提交
2014 2015 2016 2017 2018
| Promise&lt;void&gt; | Promise调用返回空 |

**示例**

```
P
panqiangbiao 已提交
2019
async function example() {
P
panqiangbiao 已提交
2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032
    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 已提交
2033 2034
```

Z
zengyawen 已提交
2035
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
2036

P
panqiangbiao 已提交
2037
getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void
P
panqiangbiao 已提交
2038 2039 2040

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

P
panqiangbiao 已提交
2041
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
2042

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

P
panqiangbiao 已提交
2045 2046
**参数**

Z
zengyawen 已提交
2047
| 参数名   | 类型                                                | 必填 | 说明                                |
Z
zengyawen 已提交
2048
| -------- | --------------------------------------------------- | ---- | ----------------------------------- |
Z
zengyawen 已提交
2049 2050
| options  | [MediaFetchOptions](#mediafetchoptions7)            | 是   | 媒体检索选项。                      |
| callback | AsyncCallback<[FetchFileResult](#fetchfileresult7)> | 是   | 异步返回FetchFileResult之后的回调。 |
P
panqiangbiao 已提交
2051 2052 2053 2054

**示例**

```
P
panqiangbiao 已提交
2055
async function example() {
P
panqiangbiao 已提交
2056 2057 2058 2059 2060 2061 2062 2063 2064 2065
    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 已提交
2066 2067 2068
}
```

Z
zengyawen 已提交
2069
### getFileAssets<sup>7+</sup>
P
panqiangbiao 已提交
2070

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

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

P
panqiangbiao 已提交
2075
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
2076

P
panqiangbiao 已提交
2077
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
2078 2079 2080

**参数**

Z
zengyawen 已提交
2081
| 参数名  | 类型                                     | 必填 | 说明           |
Z
zengyawen 已提交
2082
| ------- | ---------------------------------------- | ---- | -------------- |
Z
zengyawen 已提交
2083
| options | [MediaFetchOptions](#mediafetchoptions7) | 否   | 媒体检索选项。 |
P
panqiangbiao 已提交
2084 2085 2086

**返回值**

Z
zengyawen 已提交
2087 2088
| 类型                                          | 说明                      |
| --------------------------------------------- | ------------------------- |
Z
zengyawen 已提交
2089
| Promise<[FetchFileResult](#fetchfileresult7)> | 返回FetchFileResult对象。 |
P
panqiangbiao 已提交
2090 2091 2092 2093

**示例**

```
P
panqiangbiao 已提交
2094
async function example() {
P
panqiangbiao 已提交
2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106
    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 已提交
2107 2108
```

P
panqiangbiao 已提交
2109
## PeerInfo<sup>8+</sup>
P
panqiangbiao 已提交
2110

P
panqiangbiao 已提交
2111
注册设备的信息。
P
panqiangbiao 已提交
2112

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

Z
zengyawen 已提交
2115 2116 2117 2118 2119 2120
| 名称       | 类型                       | 可读 | 可写 | 说明             |
| ---------- | -------------------------- | ---- | ---- | ---------------- |
| deviceName | string                     | 是   | 否   | 注册设备的名称   |
| networkId  | string                     | 是   | 否   | 注册设备的网络ID |
| deviceType | [DeviceType](#devicetype8) | 是   | 否   | 设备类型         |
| isOnline   | boolean                    | 是   | 否   | 是否在线         |
P
panqiangbiao 已提交
2121 2122 2123



Z
zengyawen 已提交
2124
## MediaType<sup>8+</sup>
P
panqiangbiao 已提交
2125 2126 2127

枚举,媒体类型。

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

Z
zengyawen 已提交
2130 2131 2132 2133 2134 2135
| 名称  | 默认值 | 说明 |
| ----- | ------ | ---- |
| FILE  | 0      | 文件 |
| IMAGE | 1      | 图片 |
| VIDEO | 2      | 视频 |
| AUDIO | 3      | 音频 |
P
panqiangbiao 已提交
2136

Z
zengyawen 已提交
2137
## FileKey<sup>8+</sup>
P
panqiangbiao 已提交
2138 2139 2140

枚举,文件关键信息。

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

Z
zengyawen 已提交
2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160
| 名称          | 默认值              | 说明                                                       |
| ------------- | ------------------- | ---------------------------------------------------------- |
| 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              | 图片高度(单位:像素)                                     |
P
panqiangbiao 已提交
2161
| ORIENTATION   | orientation         | 图片显示方向,即顺时针旋转角度,如0,90,180。(单位:度) |
Z
zengyawen 已提交
2162 2163
| ALBUM_ID      | bucket_id           | 文件所归属的相册编号                                       |
| ALBUM_NAME    | bucket_display_name | 文件所归属相册名称                                         |
P
panqiangbiao 已提交
2164

Z
zengyawen 已提交
2165
## DirectoryType<sup>8+</sup>
P
panqiangbiao 已提交
2166 2167 2168

枚举,目录类型。

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

Z
zengyawen 已提交
2171 2172 2173 2174 2175 2176 2177 2178
| 名称          | 默认值 | 说明               |
| ------------- | ------ | ------------------ |
| DIR_CAMERA    | 0      | 表示Camera文件路径 |
| DIR_VIDEO     | 1      | 表示视频路径       |
| DIR_IMAGE     | 2      | 表示图片路径       |
| DIR_AUDIO     | 3      | 表示音频路径       |
| DIR_DOCUMENTS | 4      | 表示文档路径       |
| DIR_DOWNLOAD  | 5      | 表示下载路径       |
P
panqiangbiao 已提交
2179

Z
zengyawen 已提交
2180
## DeviceType<sup>8+</sup>
P
panqiangbiao 已提交
2181 2182 2183

枚举,设备类型。

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

Z
zengyawen 已提交
2186 2187 2188 2189 2190 2191 2192 2193 2194
| 名称         | 默认值 | 说明       |
| ------------ | ------ | ---------- |
| TYPE_UNKNOWN | 0      | 未识别设备 |
| TYPE_LAPTOP  | 1      | 笔记本电脑 |
| TYPE_PHONE   | 2      | 手机       |
| TYPE_TABLET  | 3      | 平板电脑   |
| TYPE_WATCH   | 4      | 智能手表   |
| TYPE_CAR     | 5      | 车载设备   |
| TYPE_TV      | 6      | 电视设备   |
P
panqiangbiao 已提交
2195

Z
zengyawen 已提交
2196
## MediaFetchOptions<sup>7+</sup>
P
panqiangbiao 已提交
2197 2198 2199

检索条件。

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

Z
zengyawen 已提交
2202 2203 2204 2205 2206 2207 2208 2209
| 名称                    | 类型                | 可读 | 可写 | 必填 | 说明                                                         |
| ----------------------- | ------------------- | ---- | ---- | ---- | ------------------------------------------------------------ |
| 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()], |
| order<sup>8+</sup>      | string              | 是   | 是   | 否   | 检索结果排序方式,使用[FileKey](#filekey8)中的枚举值作为检索结果排序的列,可以用升序或降序排列。示例:<br />升序排列:order: mediaLibrary.FileKey.DATE_ADDED + " AESC"<br />降序排列:order: mediaLibrary.FileKey.DATE_ADDED + " DESC" |
| uri<sup>8+</sup>        | string              | 是   | 是   | 否   | 文件URI                                                      |
| networkId<sup>8+</sup>  | string              | 是   | 是   | 否   | 注册设备网络ID                                               |
| extendArgs<sup>8+</sup> | string              | 是   | 是   | 否   | 扩展的检索参数,目前没有扩展检索参数                         |
P
panqiangbiao 已提交
2210

P
panqiangbiao 已提交
2211
## Size<sup>8+</sup>
P
panqiangbiao 已提交
2212 2213 2214

图片尺寸。

H
HelloCrease 已提交
2215 2216 2217 2218
| 名称     | 类型     | 可读   | 可写   | 说明       |
| ------ | ------ | ---- | ---- | -------- |
| width  | number | 是    | 是    | 宽(单位:像素) |
| height | number | 是    | 是    | 高(单位:像素) |
P
panqiangbiao 已提交
2219

P
panqiangbiao 已提交
2220 2221 2222 2223 2224 2225 2226 2227 2228
## MediaAssetOption

媒体资源选项。

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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


H
HelloCrease 已提交
2229 2230 2231 2232 2233
| 名称           | 类型     | 必填   | 描述                                       |
| ------------ | ------ | ---- | ---------------------------------------- |
| src          | string | 是    | 媒体库数据的URI。                               |
| mimeType     | string | 是    | 媒体MIME(Multipurpose&nbsp;Internet&nbsp;Mail&nbsp;Extensions)类型。<br/>例:'image/\*'、'video/\*'等。 |
| relativePath | string | 否    | 自定义媒体资源保存位置,不填则保存到默认路径。例:imageDir/image2/(媒体资源将保存位置为:default/imageDir/image2/),default为默认保存路径。 |
P
panqiangbiao 已提交
2234 2235 2236 2237 2238 2239 2240 2241 2242

## MediaSelectOption

媒体资源类型选项。

本接口在OpenHarmony 3.1 Release版本仅为接口定义,暂不支持使用。接口将在OpenHarmony 3.1 MR版本中提供使用支持。

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

H
HelloCrease 已提交
2243 2244 2245 2246
| 名称    | 类型     | 必填   | 描述                   |
| ----- | ------ | ---- | -------------------- |
| type  | string | 是    | 媒体类型,包括:image,video。 |
| count | number | 是    | 媒体选择最大数量。            |