/remove_dir_all

Reliable remove_dir_all implementation for Windows

Primary LanguageRustApache License 2.0Apache-2.0

remove_dir_all

documentation

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