remove_dir_all/
lib.rs

1#[cfg(windows)]
2extern crate winapi;
3
4#[cfg(windows)]
5mod fs;
6
7#[cfg(windows)]
8pub use self::fs::remove_dir_all;
9
10#[cfg(not(windows))]
11pub use std::fs::remove_dir_all;
12