fsio::path
pub fn get_last_modified_time(path: &str) -> Result<u128, FsIOError>
Returns the last modified time of the provided path in millies since unix epoch time.
path
use fsio::path; fn main() { let time = path::get_last_modified_time("./src/path/mod.rs").unwrap(); assert!(time > 0); }