Crate file_kitty

Source
Expand description

A toolkit for file operations with a focus on encoding detection and conversion

§Features

  • Automatic encoding detection
  • Batch conversion of non-UTF-8 files to UTF-8
  • Smart binary file detection
  • Interactive mode for bulk operations

§Example

use file_kitty::encoding::scan_directory;
 
#[tokio::main]
async fn main() -> anyhow::Result<()> {
    scan_directory("./my_project", false, false).await?;
    Ok(())
}

Modules§

encoding
Module for file encoding detection and conversion