Temporary Build Status

The package helps to create temporary files and directories.

Documentation

Example

```rust use temporary::Directory;

let directory = Directory::new("foo").unwrap(); assert!(std::fs::metadata(directory).is_ok()); // Exists? Yes! ```

Acknowledgments

The package was originally based on std::io::TempDir by Rust’s developers, which was later moved to a separate crate, tempdir.

Contribution

  1. Fork the project.
  2. Implement your idea.
  3. Open a pull request.