mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-07 20:43:03 +00:00
Rollup merge of #21640 - retep998:rmdir, r=alexcrichton
`_wrmdir` is literally just a wrapper around `RemoveDirectoryW`, so let's just use `RemoveDirectoryW`. r? @alexcrichton
This commit is contained in:
commit
0d1a4ac269
@ -273,6 +273,7 @@ pub use funcs::bsd43::{shutdown};
|
||||
#[cfg(windows)] pub use funcs::extra::kernel32::{GetOverlappedResult, ConnectNamedPipe};
|
||||
#[cfg(windows)] pub use funcs::extra::kernel32::{DisconnectNamedPipe, OpenProcess};
|
||||
#[cfg(windows)] pub use funcs::extra::kernel32::{MoveFileExW, VirtualProtect};
|
||||
#[cfg(windows)] pub use funcs::extra::kernel32::{RemoveDirectoryW};
|
||||
#[cfg(windows)] pub use funcs::extra::msvcrt::{get_osfhandle, open_osfhandle};
|
||||
#[cfg(windows)] pub use funcs::extra::winsock::{ioctlsocket};
|
||||
|
||||
|
@ -342,7 +342,7 @@ pub fn chmod(p: &Path, mode: uint) -> IoResult<()> {
|
||||
|
||||
pub fn rmdir(p: &Path) -> IoResult<()> {
|
||||
let p = try!(to_utf16(p));
|
||||
mkerr_libc(unsafe { libc::wrmdir(p.as_ptr()) })
|
||||
super::mkerr_winbool(unsafe { libc::RemoveDirectoryW(p.as_ptr()) })
|
||||
}
|
||||
|
||||
pub fn chown(_p: &Path, _uid: int, _gid: int) -> IoResult<()> {
|
||||
|
Loading…
Reference in New Issue
Block a user