file_finch 0.1.0

A file format detection library supporting various data formats including Arrow, Parquet, CSV, Excel, GeoJSON, and more
Documentation
# FileFinch

Reliable file format detection library written in Rust.

FileFinch can identify various data formats by examining file contents and magic bytes.

## Features

Detects multiple file formats including:

```rust
pub enum FileType {
    Geopackage,
    Shapefile,
    Geojson,
    Excel,
    Csv,
    Parquet,
    Arrow,
    Png,
    Unknown,
}
```