Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alpheustangs/filego.rs

A file splitting & merging solution
https://github.com/alpheustangs/filego.rs

check file filego filesystem merge rust split

Last synced: 30 days ago
JSON representation

A file splitting & merging solution

Awesome Lists containing this project

README

        

# FileGo

A file splitting & merging solution.

## Installation

To install this package, run the following command:

```bash
cargo add filego
```

## 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 licensed under the terms of the MIT license.