Interface DownloadResult

interface DownloadResult {
    filepath: string;
    isExist: boolean;
    size: number;
}

Properties

Properties

filepath: string

文件下载保存的路径

isExist: boolean

文件是否已存在(没有从网络下载)

size: number

文件总大小