Temporary
The package provides means of managing temporary files and folders.
Example
use File;
use Write;
use Folder;
// Create a temporary folder.
let folder = new.unwrap;
// Do some work.
let mut file = create.unwrap;
file.write_all.unwrap;
// The folder and its content get removed automatically.
Acknowledgments
The package was originally based on std::io::TempDir
by Rust’s developers,
which was later moved to a separate crate,
tempdir.
Contribution
Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.