clean-path
clean-path
is a safe fork of the
path-clean
crate.
Installation
Usage
use ;
use ;
assert_eq!;
assert_eq!;
assert_eq!;
About
This fork aims to provide the same utility as
path-clean
, without using unsafe. Additionally, the api
is improved ([clean
] takes AsRef<Path>
instead of just &str
) and Clean
is implemented on
Path
in addition to just PathBuf
.
The main cleaning procedure is implemented using the methods provided by PathBuf
, thus it should
bring portability benefits over path-clean
w.r.t. correctly
handling cross-platform filepaths.
Additionally, the original implementation in path-clean
is
rather inscrutible, and as such if being able to inspect and understand the code is important to
you, this crate provides a more readable implementation.
However, the current implementation is not highly-optimized, so if performance is top-priority,
consider using path-clean
instead.
Specification
The cleaning works as follows:
- Reduce multiple slashes to a single slash.
- Eliminate
.
path name elements (the current directory). - Eliminate
..
path name elements (the parent directory) and the non-.
non-..
, element that precedes them. - Eliminate
..
elements that begin a rooted path, that is, replace/..
by/
at the beginning of a path. - Leave intact
..
elements that begin a non-rooted path.
If the result of this process is an empty string, return the
string "."
, representing the current directory.
This transformation is performed lexically, without touching the filesystem. Therefore it doesn't do any symlink resolution or absolute path resolution. For more information you can see "Getting Dot-Dot Right".
This functionality is exposed in the [clean
] function and [Clean
] trait implemented for
[std::path::PathBuf
] and [std::path::Path
].
License
MIT OR Apache-2.0