path-dedot 4.0.1

A library for extending `Path` and `PathBuf` in order to parse the path which contains dots.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(not(feature = "fixed_workdir"))]
macro_rules! get_cwd {
    () => {
        std::env::current_dir()?
    };
}

#[cfg(feature = "fixed_workdir")]
macro_rules! get_cwd {
    () => {
        $crate::CWD.as_path()
    };
}