#file-path #file-io #traits #utilities

path-ext

Provide convenient methods for path operations

2 releases

0.1.1 Aug 14, 2024
0.1.0 Aug 14, 2020

#1332 in Rust patterns

Download history 1/week @ 2024-11-29 39/week @ 2024-12-06 37/week @ 2024-12-13 70/week @ 2024-12-20 12/week @ 2024-12-27 79/week @ 2025-01-03 30/week @ 2025-01-10 20/week @ 2025-01-17 14/week @ 2025-01-24 23/week @ 2025-01-31 76/week @ 2025-02-07 45/week @ 2025-02-14 120/week @ 2025-02-21 535/week @ 2025-02-28 449/week @ 2025-03-07 644/week @ 2025-03-14

1,754 downloads per month
Used in y-octo

Custom license

15KB
136 lines

path-ext

Provide convenient methods for path operations

Using

fn test_path() {
    let path1 = PathBuf::from("Z:\\Movies\\[VCB-Studio] Fate Zero [Ma10p_1080p]\\[VCB-Studio] Fate Zero [04][Ma10p_1080p][x265_flac].mkv");
    println!("full path: {}", path1.full_str());
    println!("file ext: {}", path1.ext_str());
    println!("file stem: {}", path1.stem_str());
    println!("file name: {}", path1.name_str());
    let path2 = PathBuf::from("Z:\\Movies");
    let path3 = PathBuf::from("[VCB-Studio] Fate Zero [Ma10p_1080p]\\[VCB-Studio] Fate Zero [04][Ma10p_1080p][x265_flac].mkv");
    let path4 = path2.merge(path3);
    println!("merged full path: {}", path4.full_str());
    println!("file: {}", path1.is_file());
    println!("dir: {}", path2.is_dir());
    if let Some(parent) = path4.parent() {
        for path in parent.walk_dir(|p| p.is_dir()) {
            println!("subdir: {}", path.full_str());
        }
    }
}

output:

running 1 test
full path: Z:\Movies\[VCB-Studio] Fate Zero [Ma10p_1080p]\[VCB-Studio] Fate Zero [04][Ma10p_1080p][x265_flac].mkv
file ext: mkv
file stem: [VCB-Studio] Fate Zero [04][Ma10p_1080p][x265_flac]
file name: [VCB-Studio] Fate Zero [04][Ma10p_1080p][x265_flac].mkv
merged full path: Z:\Movies\[VCB-Studio] Fate Zero [Ma10p_1080p]\[VCB-Studio] Fate Zero [04][Ma10p_1080p][x265_flac].mkv
file: true
dir: true
subdir: Z:\Movies\[VCB-Studio] Fate Zero [Ma10p_1080p]
subdir: Z:\Movies\[VCB-Studio] Fate Zero [Ma10p_1080p]\CDs
subdir: Z:\Movies\[VCB-Studio] Fate Zero [Ma10p_1080p]\Scans
subdir: Z:\Movies\[VCB-Studio] Fate Zero [Ma10p_1080p]\SPs
test test_path ... ok

Dependencies

~0.1–6.5MB
~34K SLoC