Skip to content
On this page

ek.getFileInfo

支持 Promise

获取文件信息。

参数

参数类型默认值必填说明
filePathstring本地文件路径 (本地路径)
digestAlgorithmstringmd5计算文件摘要的算法
合法值说明
md5md5 算法
sha1sha1 算法
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

成功返回

属性类型说明
sizenumber文件大小,单位 B
digeststring按照传入的 digestAlgorithm 计算得出的的文件摘要

Example

ts
const res = await ek.getFileInfo({ filePath })
console.log(res)