filego

Crates.iofilego
lib.rsfilego
version0.4.0
sourcesrc
created_at2024-05-22 09:06:59.273015
updated_at2024-10-26 20:07:15.231078
descriptionA file splitting & merging solution
homepagehttps://github.com/alpheustangs/filego.rs
repositoryhttps://github.com/alpheustangs/filego.rs
max_upload_size
id1247722
size22,053
Alpheus (alpheustangs)

documentation

README

FileGo

A file splitting & merging solution.

Quick Start

Split file from a path to a directory with Split struct.

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.

Commit count: 43

cargo fmt