gecko-dev/third_party/rust/remove_dir_all
..
src
.cargo-checksum.json
Cargo.toml
LICENCE-APACHE
LICENCE-MIT
README.md

README.md

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();
}