DownloadedFile

data class DownloadedFile(val file: File, val fileName: String)

A POJO that contains information about a downloaded file, specifically the downloaded location of the file file as well as the original name of the file fileName.

Parameters

file

The local File location of the downloaded file

fileName

the original name of the downloaded file

Constructors

Link copied to clipboard
constructor(file: File, fileName: String)

Properties

Link copied to clipboard
val file: File
Link copied to clipboard