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
7
8
9
10
11
12
13
14
15
mod platform;

#[cfg(test)]
mod test;

pub use platform::NormalizePathTrait;

#[cfg(target_os = "linux")]
pub use platform::linux::{find_path, get_id};

#[cfg(target_os = "macos")]
pub use platform::macos::{find_path, get_id};

#[cfg(target_os = "windows")]
pub use platform::windows::{find_path, get_id};