4 releases

0.9.3 Jun 22, 2023
0.9.2 Jun 9, 2023
0.9.1 Mar 30, 2023
0.9.0 Mar 29, 2023

#434 in Filesystem

Download history 3/week @ 2024-02-02 4/week @ 2024-02-09 13/week @ 2024-02-16 15/week @ 2024-02-23 85/week @ 2024-03-01 36/week @ 2024-03-08 39/week @ 2024-03-15 23/week @ 2024-03-22 24/week @ 2024-03-29 13/week @ 2024-04-05 20/week @ 2024-04-12 17/week @ 2024-04-19

77 downloads per month

MIT/Apache

39KB
749 lines

Readme

This is basically a Rust implementation of Balena's drivelist. At the moment, I don't own a Mac machine, so it only supports:

  • Windows
  • Linux

crates.io MSRV MIT or Apache 2.0 licensed

Preparing

Issue command at your root project directory:

cargo add "rs-drivelist"

Or edit your Cargo.toml file, and add this line:

rs-drivelist = "0.9.0"

Usage

This library exports one function: rs_drivelist::drive_list() which returns a Result of Vec<DeviceDescriptor>

Windows Output

[{
       "enumerator": "SCSI",
       "busType": "NVME",
       "busVersion": "2.0",
       "device": "\\\\.\\PhysicalDrive0",
       "devicePath": null,
       "raw": "\\\\.\\PhysicalDrive0",
       "description": "SKHynix_HFM512GDHTNI-87A0B",
       "error": null,
       "partitionTableType": "gpt",
       "size": 512110190592,
       "blockSize": 4096,
       "logicalBlockSize": 512,
       "mountpoints": [
         {
            "path": "C:\\",
            "label": null,
            "totalBytes": 136773103616,
            "availableBytes": 24087683072
         },
         {
             "path": "D:\\",
             "label": null,
             "totalBytes": 218398453760,
             "availableBytes": 35988631552
         }
      ],
      "isReadOnly": false,
      "isSystem": true,
      "isCard": false,
      "isSCSI": false,
      "isUSB": false,
      "isVirtual": false,
      "isRemovable": false,
      "isUAS": false
}]

Linux Output

[{
    "enumerator": "lsblk:json",
    "busType": "NVME",
    "busVersion": null,
    "device": "/dev/nvme0n1",
    "devicePath": "/dev/disk/by-path/pci-0000:02:00.0-nvme-1",
    "raw": "/dev/nvme0n1",
    "description": " SKHynix_HFM512GDHTNI-87A0B SYSTEM_DRV, Mazter, Home, WINRE_DRV",
    "error": null,
    "partitionTableType": "gpt",
    "size": 512110190592,
    "blockSize": 512,
    "logicalBlockSize": 512,
    "mountpoints": [
      {
        "path": "/boot/efi",
        "label": "SYSTEM_DRV",
        "totalBytes": 583942144,
        "availableBytes": 541696000
      },
      {
        "path": "[SWAP]",
        "label": null,
        "totalBytes": null,
        "availableBytes": null
      },
      {
        "path": "/",
        "label": null,
        "totalBytes": 67317620736,
        "availableBytes": 47072321536
      },
      {
        "path": "/home",
        "label": "Home",
        "totalBytes": 67050090496,
        "availableBytes": 9986170880
      }
    ],
    "isReadOnly": false,
    "isSystem": true,
    "isCard": false,
    "isSCSI": false,
    "isUSB": false,
    "isVirtual": false,
    "isRemovable": false,
    "isUAS": null
}]

Dependencies

~1.4–2.3MB
~48K SLoC