file_tree
Creates and manages a directory structure suitable for storing large numbers of files (up to 1 trillion).
Usage
Add this to your Cargo.toml:
[]
= "0.1.1"
Examples
Use FileTree::new(false) to create a temporary structure that will be deleted
when the created struct is dropped.
Calls to get_new_file() will generate a new PathBuf. The parent directory will exist, but get_new_file() will not actually create the file.
Use get_root() to retrieve the base path for the created directory structure.
extern crate file_tree;
use FileTree;