🍕Drive partitions

Parts of drive

There are two types of partitions supported by Inxi.NET.

Drive partitions

This lists information about the partitions of a hard drive that are parsed by Inxi. You can use the below properties to learn more about its information.

You can call the module either by enumerating through the entire dictionary of the partitions, or you can use their names directly as follows:

HardwareInfo.HDD["TOSHIBA DT01ACA100"].Partitions["<partition>"].<property>

which <partition> is either:

  • the /dev path for a partition, such as /dev/sda1, /dev/mmcblk0p4, or /dev/nvme1n2, on Linux systems, or

  • the physical partition indicator in this format: Physical partition in <Model> (<DiskIndex>) : <PartitionIndex> on Windows systems

and <property> is:

Partition size is automatically GiB in Inxi on Unix systems, and is in bytes on Windows systems.

Logical partitions

This is not available for non-Windows systems.

Inxi.NET has an additional option where you can provide logical partitions. They're found on LogicalParts module which you can either call by enumerating through the entire dictionary of the partitions, or you can use their names directly as follows:

HardwareInfo.LogicalParts["Logical partition <ID>"].<property>

which <property> is:

Last updated