aminraay / win-partitions

Get disk partition's information on Windows.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

win-partitions

A Rust crate to get windows partitions list and their information using Windows API.

Example

use win_partitions::windows_partition::get_partitions;

fn main() {
    let list = get_partitions();
    for i in list.unwrap() {
        println!("Drive {} ({})", i.letter, i.name);
        println!("Ready: {}", i.ready);
        println!("File System: {}", i.file_system_name);
        println!("Free Space: {} / {} Bytes", i.free_space, i.size);

        println!();
    }
}

About

Get disk partition's information on Windows.

License:MIT License


Languages

Language:Rust 100.0%