srusty-files 0.2.0

A high-performance, cross-platform file search engine library with REST API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod encoding;
pub mod hash;
pub mod mime;
pub mod path;

pub use encoding::{detect_encoding, is_likely_text, is_utf8, read_file_with_encoding};
pub use hash::{hash_bytes, hash_file, hash_string};
pub use mime::{categorize_file, detect_mime_type, FileCategory};
pub use path::{
    ensure_parent_exists, get_extension, get_file_name, get_file_stem, get_path_depth,
    get_relative_path, is_hidden, is_same_file, join_paths, normalize_path,
};