获取文件列表
获取设备相册中的照片和视频文件列表。
接口说明
接口类型
queryMediaFile参数
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
deviceId | string | ✅ | 设备 ID |
返回值
返回媒体文件列表数组:
javascript
[
{
name: "IMG_0001.JPG",
ext: 'mp4',
mtime: "2024-01-01 10:00:00",
},
// 更多文件...
]基本使用
javascript
// 获取设备相册文件列表
const mediaFiles = await apiInvoke('queryMediaFile', {
deviceId: 'P72578581E07'
});
console.log(`相册中共有 ${mediaFiles.length} 个文件`);