小程序或 uni-app 本地文件对象。

interface MiniAppFile {
    path: string;
    size?: number;
    name?: string;
    type?: string;
}

Properties

Properties

path: string

本地文件路径。

size?: number

文件大小,单位字节。

name?: string

文件名称。

type?: string

文件 MIME 类型。