remove_dir_all_ext 0.8.4

A safe, reliable implementation of remove_dir_all for Windows
Documentation
1
2
3
4
5
6
7
use std::{io::Result, path::{PathBuf, Path}};

fn main() -> Result<()> {
    simplelog::TermLogger::init(simplelog::LevelFilter::Trace, simplelog::Config::default(), simplelog::TerminalMode::Mixed, simplelog::ColorChoice::Auto);
    remove_dir_all::remove_dir_containing_current_executable()?;
    Ok(())
}