Disk Usage Item
data class DiskUsageItem( val type: FileSystemType, val path: String, val sizeInBytes: Int, val childItems: List<DiskUsageItem>?)
Content copied to clipboard
A directory or file in the Ditto working directory. Directories can be traversed by accessing the children
property. Files won't have any children.
Constructors
Link copied to clipboard
fun DiskUsageItem( type: FileSystemType, path: String, sizeInBytes: Int, childItems: List<DiskUsageItem>?)
Content copied to clipboard