lfs-core 0.14.1

give information on mounted disks
Documentation
use std::{
    fs::File,
    io::{
        self,
        Read,
    },
    path::Path,
};

/// read a system file into a string
#[allow(dead_code)]
pub fn read_file<P: AsRef<Path>>(path: P) -> io::Result<String> {
    let mut file = File::open(path.as_ref())?;
    let mut buf = String::new();
    file.read_to_string(&mut buf)?;
    Ok(buf)
}

/// read a system file into a boolean (assuming "0" or "1")
#[cfg(target_os = "linux")]
pub fn read_file_as_bool<P: AsRef<Path>>(path: P) -> Option<bool> {
    read_file(path).ok().and_then(|c| match c.trim() {
        "0" => Some(false),
        "1" => Some(true),
        _ => None,
    })
}

/// decode ascii-octal or ascii-hexa encoded strings
#[cfg(target_os = "linux")]
pub fn decode_string<S: AsRef<str>>(s: S) -> String {
    use lazy_regex::*;
    // replacing octal escape sequences
    let s = regex_replace_all!(r#"\\0(\d\d)"#, s.as_ref(), |_, n: &str| {
        let c = u8::from_str_radix(n, 8).unwrap() as char;
        c.to_string()
    });
    // replacing hexa escape sequences
    let s = regex_replace_all!(r#"\\x([0-9a-fA-F]{2})"#, &s, |_, n: &str| {
        let c = u8::from_str_radix(n, 16).unwrap() as char;
        c.to_string()
    });
    s.to_string()
}