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;