A reliable implementation of remove_dir_all for Windows. For Unix systems re-exports std::fs::remove_dir_all.
remove_dir_all
std::fs::remove_dir_all
```rust,norun extern crate removedir_all;
use removedirall::*;
fn main() { removedirall("./temp/").unwrap(); } ```