#filename #sanitizer #remove #name #node #file #command-line

bin+lib sanitize-filename

A simple filename sanitizer, based on Node's sanitize-filename

7 releases (breaking)

0.6.0 Nov 7, 2024
0.5.0 Jul 31, 2023
0.4.0 May 7, 2022
0.3.0 Oct 18, 2020
0.1.0 Oct 24, 2018

#73 in Parser implementations

Download history 26580/week @ 2024-09-21 31992/week @ 2024-09-28 27723/week @ 2024-10-05 31497/week @ 2024-10-12 35375/week @ 2024-10-19 37525/week @ 2024-10-26 36972/week @ 2024-11-02 36044/week @ 2024-11-09 35243/week @ 2024-11-16 32898/week @ 2024-11-23 40329/week @ 2024-11-30 41209/week @ 2024-12-07 34948/week @ 2024-12-14 20760/week @ 2024-12-21 22118/week @ 2024-12-28 35479/week @ 2025-01-04

119,495 downloads per month
Used in 210 crates (70 directly)

MIT license

12KB
298 lines

sanitize-filename

A basic filename sanitizer, based on Node's sanitize-filename.

Use like:

extern crate sanitize_filename;

fn main() {
    println!("{}", sanitize_filename::sanitize("some-user-defined/../../../string"));
    // prints some-user-defined......string
}

You can also configure a few basic options:

let options = sanitize_filename::Options {
    truncate: true, // true by default, truncates to 255 bytes
    windows: true, // default value depends on the OS, removes reserved names like `con` from start of strings on Windows
    replacement: "" // str to replace sanitized chars/strings
};

let sanitized = sanitize_filename::sanitize_with_options("some-user-defined/../../../string", options);

Also provides a basic command line binary. Use like:

cargo install sanitize-filename
sanitize-filename my_filename.txt
Pass a file name to clean to the program (also reads STDIN)

FLAGS:
    -r, --replace <r>          Replacement characters
    --windows, --no-windows    Whether to handle filenames for Windows
    --truncate, --no-truncate  Whether to truncate file names to 255 bytes

Dependencies

~2.7–4MB
~66K SLoC