1 unstable release
| 0.1.1 | Dec 11, 2023 |
|---|---|
| 0.1.0 |
|
#362 in Operating systems
6KB
58 lines
pathsub
Subtract one path from another, returns subtraction difference not the relative path
Example:
use pathsub::sub_paths;
use std::path::Path;
let a = Path::new("foo/bar");
let b = Path::new("foo");
sub_paths(a, b); // Some("bar")
Made with <3 by Dervex
pathsub
Subtract one path from another, yielding the subtraction difference rather than relative path, unlike pathdiff
Example:
use pathsub::sub_paths;
use std::path::Path;
let a = Path::new("foo/bar");
let b = Path::new("foo");
sub_paths(a, b); // Some("bar")