ReactOS
0.4.16-dev-732-g2d1144a
wrmdir.cpp
Go to the documentation of this file.
1
//
2
// wrmdir.cpp
3
//
4
// Copyright (c) Microsoft Corporation. All rights reserved.
5
//
6
// The _wrmdir() function, which removes a directory.
7
//
8
#include <
corecrt_internal.h
>
9
#include <direct.h>
10
11
12
13
// Removes the directory specified by the path. The directory must be empty, it
14
// must not be the current working directory, and it must not be the root of any
15
// drive. Returns 0 on success; returns -1 and sets errno and _doserrno on
16
// failure.
17
extern
"C"
int
__cdecl
_wrmdir
(
wchar_t
const
*
const
path
)
18
{
19
if
(!
RemoveDirectoryW
(
path
))
20
{
21
__acrt_errno_map_os_error
(
GetLastError
());
22
return
-1;
23
}
24
25
return
0;
26
}
__cdecl
#define __cdecl
Definition:
accygwin.h:79
corecrt_internal.h
__acrt_errno_map_os_error
void __cdecl __acrt_errno_map_os_error(unsigned long)
Definition:
errno.cpp:91
RemoveDirectoryW
BOOL WINAPI RemoveDirectoryW(IN LPCWSTR lpPathName)
Definition:
dir.c:732
path
Definition:
wbemprox_private.h:188
GetLastError
DWORD WINAPI GetLastError(void)
Definition:
except.c:1042
_wrmdir
int __cdecl _wrmdir(wchar_t const *const path)
Definition:
wrmdir.cpp:17
sdk
lib
ucrt
filesystem
wrmdir.cpp
Generated on Sat Feb 8 2025 06:14:37 for ReactOS by
1.9.6