Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 504 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 504 Bytes

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!();
    }
}