1 unstable release

0.1.0 Mar 28, 2020

#1174 in Filesystem

23 downloads per month

MIT license

5KB
107 lines

flatten-dir

This simple library and CLI flattens a directory recursively.

CLI

Instalation

cargo install flatten_dir

Usage

flatten_dir <path>

Library

Instalation

# In Cargo.toml
[dependencies]
flatten-dir = "0.1"

Usage

use flatten_dir::flatten;

fn main() {
	flatten("./music_lib_from_2001").unwrap();
}

No runtime deps