Crates.io | pathbuf-ext |
lib.rs | pathbuf-ext |
version | 0.1.0 |
source | src |
created_at | 2023-08-29 12:27:30.080567 |
updated_at | 2023-08-29 12:27:30.080567 |
description | Extends PathBuf to handle `replace` and `contains` string methods |
homepage | https://gitlab.com/zitrussaft1/pathbuf-ext |
repository | https://gitlab.com/zitrussaft1/pathbuf-ext |
max_upload_size | |
id | 958027 |
size | 6,021 |
Here are some examples on how to use it:
let path = Path::new("C:\\Users\\user\\Desktop\\test.txt");
let path = path.replace("user/Desktop", "user/Documents");
assert_eq!(path, PathBuf::from("C:\\Users\\user\\Documents\\test.txt"));
let path = Path::new("C:\\Users\\user\\Desktop\\test.txt");
assert!(path.contains("Desktop"));
assert!(!path.contains("Documents"));
// Windows
assert!(path.contains("user\\Desktop"));
assert!(!path.contains("user\\Documents"));
// Linux
assert!(path.contains("user/Desktop"));
assert!(!path.contains("user/Documents"));