blob: 3347fd7c0908924ba65ae7b31a577a86d60293fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
%
% (c) The GRASP/AQUA Project, Glasgow University, 1995
%
\subsection[removeDirectory.lc]{removeDirectory Runtime Support}
\begin{code}
#include "rtsdefs.h"
#include "stgio.h"
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
StgInt
removeDirectory(path)
StgByteArray path;
{
struct stat sb;
/* Check for an actual directory */
while (stat(path, &sb) != 0) {
if (errno != EINTR) {
cvtErrno();
stdErrno();
return -1;
}
}
if (!S_ISDIR(sb.st_mode)) {
ghc_errtype = ERR_INAPPROPRIATETYPE;
ghc_errstr = "not a directory";
return -1;
}
while (rmdir(path) != 0) {
if (errno != EINTR) {
cvtErrno();
switch (ghc_errno) {
default:
stdErrno();
break;
case GHC_ENOTEMPTY:
case GHC_EEXIST:
ghc_errtype = ERR_UNSATISFIEDCONSTRAINTS;
ghc_errstr = "directory not empty";
break;
}
return -1;
}
}
return 0;
}
\end{code}
|