[][src]Function fsio::path::get_last_modified_time

pub fn get_last_modified_time(path: &str) -> FsIOResult<u128>

Returns the last modified time of the provided path in millies since unix epoch time.

Arguments

Example

use fsio::path;

fn main() {
    let time = path::get_last_modified_time("./src/path/mod.rs").unwrap();

    assert!(time > 0);
}