mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-21 18:02:50 +02:00
20 lines
622 B
Markdown
20 lines
622 B
Markdown
# remove_dir_all
|
|
|
|
[](https://crates.io/crates/remove_dir_all)
|
|
[](https://docs.rs/remove_dir_all)
|
|
[](https://github.com/XAMPPRocky/remove_dir_all)
|
|
|
|
## Description
|
|
|
|
A reliable implementation of `remove_dir_all` for Windows. For Unix systems
|
|
re-exports `std::fs::remove_dir_all`.
|
|
|
|
```rust,no_run
|
|
extern crate remove_dir_all;
|
|
|
|
use remove_dir_all::*;
|
|
|
|
fn main() {
|
|
remove_dir_all("./temp/").unwrap();
|
|
}
|
|
```
|