fwd/vendor/remove_dir_all
2022-12-20 01:02:23 +00:00
..
src Fix up vendor for... linux? 2022-12-20 01:02:23 +00:00
.cargo-checksum.json Vendor dependencies 2022-12-19 08:38:22 -08:00
Cargo.toml Vendor dependencies 2022-12-19 08:38:22 -08:00
LICENCE-APACHE Fix up vendor for... linux? 2022-12-20 01:02:23 +00:00
LICENCE-MIT Fix up vendor for... linux? 2022-12-20 01:02:23 +00:00
README.md Fix up vendor for... linux? 2022-12-20 01:02:23 +00:00

remove_dir_all

Latest Version Docs License

Description

A reliable implementation of remove_dir_all for Windows. For Unix systems re-exports std::fs::remove_dir_all.

extern crate remove_dir_all;

use remove_dir_all::*;

fn main() {
    remove_dir_all("./temp/").unwrap();
}