[go: up one dir, main page]

same-file 1.0.6

A simple crate for determining whether two file paths point to the same file.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use same_file::is_same_file;
use std::io;

fn try_main() -> Result<(), io::Error> {
    assert!(is_same_file("/bin/sh", "/usr/bin/sh")?);
    Ok(())
}

fn main() {
    try_main().unwrap();
}