rusty_files/utils/
mod.rs

1pub mod encoding;
2pub mod hash;
3pub mod mime;
4pub mod path;
5
6pub use encoding::{detect_encoding, is_likely_text, is_utf8, read_file_with_encoding};
7pub use hash::{hash_bytes, hash_file, hash_string};
8pub use mime::{categorize_file, detect_mime_type, FileCategory};
9pub use path::{
10    ensure_parent_exists, get_extension, get_file_name, get_file_stem, get_path_depth,
11    get_relative_path, is_hidden, is_same_file, join_paths, normalize_path,
12};