HWPartitionImpl
class HWPartitionImpl( val identification: String, val name: String, val type: String, val uuid: String, val size: Long, val major: Int, val minor: Int, val mountPoint: String) : HWPartition
Implementation of the HWPartition
interface. This class provides details about a hardware partition on a storage device, including the partition's identification, name, type, UUID, size, major/minor numbers, and mount point.
Author
N7ghtm4r3
Parameters
identification
The unique identifier of the partition.
name
The name of the partition.
type
The type of the partition (e.g., ext4, NTFS).
uuid
The UUID (Universally Unique Identifier) of the partition.
size
The total size of the partition (in bytes).
major
The major number of the partition.
minor
The minor number of the partition.
mountPoint
The mount point of the partition (e.g., /, /home).