| Crates.io | drop-dir |
| lib.rs | drop-dir |
| version | 0.1.0 |
| created_at | 2020-03-25 21:32:41.426045+00 |
| updated_at | 2020-03-25 21:58:43.967053+00 |
| description | A simple crate for self-dropping (RAII) directories. |
| homepage | |
| repository | https://github.com/webern/webern-rs |
| max_upload_size | |
| id | 222785 |
| size | 5,005 |
A very simple crate for creating RAII directories.
use std::path::PathBuf;
use drop_dir::DropDir;
use std::fs::File;
let drop_dir = DropDir::new(PathBuf::from("/tmp/some/path")).unwrap();
let mut file = File::create(drop_dir.path().join("file.txt")).unwrap();
// drop_dir deleted when it goes out of scope.
In the example above, only the last component of the drop_dir is removed.
That is, the dir /tmp/some/temp/path is deleted, but /tmp/some/temp remains.
Any other behavior would get complicated.