path-dedot 3.0.18

A library for extending `Path` and `PathBuf` in order to parse the path which contains dots.
Documentation
use std::borrow::Cow;
use std::io;
use std::path::Path;

/// Let `Path` and `PathBuf` have `parse_dot` method.
pub trait ParseDot {
    /// Remove dots in the path and create a new `PathBuf` instance on demand.
    fn parse_dot(&self) -> io::Result<Cow<Path>>;

    /// Remove dots in the path and create a new `PathBuf` instance on demand. It gets the current working directory as the second argument.
    fn parse_dot_from(&self, cwd: &Path) -> io::Result<Cow<Path>>;
}