disk_list 0.2.10

Get disk list information and collect into Vec
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod lib;
fn main() {
    let list = lib::get_disk_list();
    assert_eq!(
        vec![
            vec!["C", "NTFS", "C:\\", "18.2 GB", "107.4 GB"],
            vec!["FILE", "FAT32", "D:\\", "191.1 GB", "214.7 GB"],
            vec!["DATA", "NTFS", "E:\\", "678.5 GB", "785.5 GB"]
        ],
        list
    );
}