implement for windows too

This commit is contained in:
Jay 2020-05-11 22:58:46 +01:00 committed by Abin Simon
parent 07efe8faa7
commit 549f559305

View file

@ -7,19 +7,9 @@ use std::fs::Metadata;
pub enum FileType {
BlockDevice,
CharDevice,
Directory {
uid: bool,
},
File {
uid: bool,
exec: bool,
},
#[cfg(unix)]
SymLink {
is_dir: bool,
},
#[cfg(windows)]
SymLink,
Directory { uid: bool },
File { uid: bool, exec: bool },
SymLink { is_dir: bool },
Pipe,
Socket,
Special,