1 unstable release
Uses old Rust 2015
0.2.2 | Jan 3, 2019 |
---|---|
0.2.1 |
|
0.2.0 |
|
0.1.0 |
|
#1639 in Filesystem
Used in 2 crates
(via disk-types)
9KB
168 lines
os-detect
Rust crate for detecting the existence of an OS from an unmounted device, or path.
extern crate os_detect;
use os_detect::detect_os_from_device;
use std::path::Path;
pub fn main() {
let device_path = &Path::new("/dev/sda3");
let fs = "ext4";
if let Some(os) = detect_os_from_device(device_path, fs) {
println!("{:#?}", os);
}
}
lib.rs
:
Provides the means for for detecting the existence of an OS from an unmounted device, or path.
extern crate os_detect;
use os_detect::detect_os_from_device;
use std::path::Path;
pub fn main() {
let device_path = &Path::new("/dev/sda3");
let fs = "ext4";
if let Some(os) = detect_os_from_device(device_path, fs) {
println!("{:#?}", os);
}
}
Dependencies
~3MB
~59K SLoC