# FileGo A file splitting & merging solution. ## Quick Start Split file from a path to a directory with `Split` struct. ```rust use std::path::PathBuf; use filego::split::{Split, SplitResult}; async fn example() { let result: SplitResult = Split::new() .in_file("/path/to/file") .out_dir(PathBuf::from("path").join("to").join("dir")) .run() .await .unwrap(); } ``` ## License This project is MIT licensed, you can find the license file [here](https://github.com/alpheustangs/filego.rs/blob/main/LICENSE).