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

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

Arguments

  • path - The path value

Example

use fsio::path;

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

    assert!(time > 0);
}