Fixed up copyright notices and such
[oweals/busybox.git] / mkdir.c
1 /*
2  * Mini mkdir implementation for busybox
3  *
4  *
5  * Copyright (C) 1999 by Lineo, inc.
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include "internal.h"
25 #include <stdio.h>
26 #include <errno.h>
27 #include <sys/param.h>
28
29 static const char mkdir_usage[] = "Usage: mkdir [OPTION] DIRECTORY...\n"
30 "Create the DIRECTORY(ies), if they do not already exist\n\n"
31 "-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n"
32 "-p\tno error if existing, make parent directories as needed\n";
33
34
35 static int parentFlag = FALSE;
36 static int permFlag = FALSE;
37 static mode_t mode = 0777;
38
39
40 extern int mkdir_main(int argc, char **argv)
41 {
42     argc--;
43     argv++;
44
45     /* Parse any options */
46     while (argc > 1 && **argv == '-') {
47         while (*++(*argv))
48             switch (**argv) {
49             case 'm':
50                 permFlag = TRUE;
51                 break;
52             case 'p':
53                 parentFlag = TRUE;
54                 break;
55             default:
56                 usage( mkdir_usage);
57             }
58         argc--;
59         argv++;
60     }
61
62
63     if (argc < 1) {
64         usage( mkdir_usage);
65     }
66
67     while (--argc > 0) {
68         struct stat statBuf;
69         if (stat(*(++argv), &statBuf) != ENOENT) {
70             fprintf(stderr, "%s: File exists\n", *argv);
71             return( FALSE);
72         }
73         if (parentFlag == TRUE)
74             createPath(*argv, mode);
75         else { 
76             if (mkdir (*argv, mode) != 0) {
77                 perror(*argv);
78                 exit( FALSE);
79             }
80         }
81     }
82     exit( TRUE);
83 }
84
85