deep-unpack

Crates.iodeep-unpack
lib.rsdeep-unpack
version0.1.2
sourcesrc
created_at2022-11-16 13:02:05.110884
updated_at2022-11-20 07:54:55.284368
descriptionUnpack deep archive files recursively over a file tree or a folder
homepagehttps://github.com/spectralOps/deep-unpack
repositoryhttps://github.com/spectralOps/deep-unpack
max_upload_size
id716379
size58,938
Elad Kaplan (kaplanelad)

documentation

https://docs.rs/deep-unpac/latest/deep-unpac

README

deep-unpack

Unpack deep archive files recursively over a file tree or a folder.

Usage

[dependencies]
deep-unpack = { version = "0.1.2" }

Usage


fn main() {

    fn main() {
         deep_unpack::DeepWalk::new()
        .folder("app/")
        .unpack_folder(format!("app/__extract__"))
        .unpack_level(4)
        .extract()?;
    }
}

All the examples here

Thanks

To all Contributors - you make this happen, thanks!

Copyright

Copyright (c) 2022 @kaplanelad. See LICENSE for further details.

Commit count: 13

cargo fmt