UriNameAndSize

data class UriNameAndSize(val name: String?, val size: Long)

Represents the name and size of a file referenced by a Uri.

Constructors

Link copied to clipboard
constructor(name: String?, size: Long)

Properties

Link copied to clipboard
val name: String?

The display name of the file, or null if it cannot be determined.

Link copied to clipboard
val size: Long

The size of the file in bytes, or -1 if unknown.