]>
diplodocus.org Git - nmh/blob - sbr/makedir.c
1 /* makedir.c -- make a directory
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
9 * Modified to try recursive create.
17 makedir (const char *dir
)
20 char* folder_perms_ASCII
;
22 mode_t folder_perms
, saved_umask
;
25 context_save(); /* save the context file */
28 if (!(folder_perms_ASCII
= context_find ("folder-protect")))
29 folder_perms_ASCII
= foldprot
; /* defaults to "700" */
31 /* Because mh-profile.man documents "Folder-Protect:" as an octal constant,
32 and we don't want to force the user to remember to include a leading
33 zero, we call atooi(folder_perms_ASCII) here rather than
34 strtoul(folder_perms_ASCII, NULL, 0). Therefore, if anyone ever tries to
35 specify a mode in say, hex, they'll get garbage. (I guess nmh uses its
36 atooi() function rather than calling strtoul() with a radix of 8 because
37 some ancient platforms are missing that functionality. */
38 folder_perms
= atooi(folder_perms_ASCII
);
40 /* Folders have definite desired permissions that are set -- we don't want
41 to interact with the umask. Clear it temporarily. */
42 saved_umask
= umask(0);
44 c
= strncpy(path
, dir
, sizeof(path
));
46 while (!had_an_error
&& (c
= strchr((c
+ 1), '/')) != NULL
) {
48 if (access(path
, X_OK
)) {
50 advise (dir
, "unable to create directory");
53 /* Create an outer directory. */
54 if (mkdir(path
, folder_perms
)) {
55 advise (dir
, "unable to create directory");
63 /* Create the innermost nested subdirectory of the path we're being
65 if (mkdir (dir
, folder_perms
) == -1) {
66 advise (dir
, "unable to create directory");
71 umask(saved_umask
); /* put the user's umask back */
74 return 0; /* opposite of UNIX error return convention */