FileGo
A file splitting & merging solution.
Quick Start
Split file from a path to a directory with Split
struct.
use PathBuf;
use ;
let result: SplitResult = new
.in_file
.out_dir
.run
.unwrap;
Async version also available with the async-std
/async_std
and tokio
features:
// This is a `async-std` example
use PathBuf;
use ;
let result: SplitResult = new
.in_file
.out_dir
.run_async
.await
.unwrap;
// This is a `tokio` example
use PathBuf;
use ;
let result: SplitResult = new
.in_file
.out_dir
.run_async
.await
.unwrap;
License
This project is licensed under the terms of the MIT license.