2 releases

Uses old Rust 2015

0.2.1 Jun 2, 2022
0.2.0 May 15, 2022

#331 in Filesystem

Download history 6291/week @ 2023-11-24 5827/week @ 2023-12-01 6874/week @ 2023-12-08 6573/week @ 2023-12-15 2572/week @ 2023-12-22 2998/week @ 2023-12-29 8068/week @ 2024-01-05 33184/week @ 2024-01-12 39675/week @ 2024-01-19 52825/week @ 2024-01-26 62571/week @ 2024-02-02 62319/week @ 2024-02-09 68552/week @ 2024-02-16 62282/week @ 2024-02-23 52161/week @ 2024-03-01 8174/week @ 2024-03-08

202,905 downloads per month
Used in 78 crates (12 directly)

MIT/Apache

13KB
164 lines

clean-path

crates.io version docs.rs docs license

clean-path is a safe fork of the path-clean crate.

Installation

cargo add clean-path

Usage

use std::path::{Path, PathBuf};
use clean_path::{clean, Clean};

assert_eq!(clean("foo/../../bar"), PathBuf::from("../bar"));
assert_eq!(Path::new("hello/world/..").clean(), PathBuf::from("hello"));
assert_eq!(
    PathBuf::from("/test/../path/").clean(),
    PathBuf::from("/path")
);

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:

  1. Reduce multiple slashes to a single slash.
  2. Eliminate . path name elements (the current directory).
  3. Eliminate .. path name elements (the parent directory) and the non-. non-.., element that precedes them.
  4. Eliminate .. elements that begin a rooted path, that is, replace /.. by / at the beginning of a path.
  5. 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

No runtime deps