pathos 0.3.0

A natural API for handling OS-specific user or system directories, including iOS and Android.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod absolute;

#[cfg(windows)]
pub const PATH_SEP_STR: &str = r"\";
#[cfg(windows)]
pub const PATH_SEP_CHAR: char = '\\';

#[cfg(unix)]
pub const PATH_SEP_STR: &str = "/";
#[cfg(unix)]
pub const PATH_SEP_CHAR: char = '/';