remove_dir_all 0.2.0

A safe, reliable implementation of remove_dir_all for Windows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate winapi;
extern crate kernel32 as kernel;

#[cfg(windows)]
mod fs;

#[cfg(windows)]
pub use self::fs::remove_dir_all;

#[cfg(not(windows))]
pub use std::fs::remove_dir_all;