refind 0.1.2

Cross platform file locator by file ID. Keep track of files even after they're renamed or moved.
Documentation
1
2
3
4
5
6
fn main() {
    let id = refind::get_id("LICENSE".into()).unwrap();
    let realpath = refind::find_path(&id).unwrap();
    println!("id: {}", id);
    println!("path: {}", realpath.display());
}