blob: 98c8d8f089245147113b618aca68aa571870df54 [file] [log] [blame]
Eric Andersenf6be9441999-10-13 21:12:06 +00001/*
2 * Mini mkdir implementation for busybox
3 *
Eric Andersenc4996011999-10-20 22:08:37 +00004 *
5 * Copyright (C) 1999 by Lineo, inc.
6 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersenf6be9441999-10-13 21:12:06 +00007 *
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
Eric Andersencc8ed391999-10-05 16:24:54 +000024#include "internal.h"
Eric Andersenf6be9441999-10-13 21:12:06 +000025#include <stdio.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000026#include <errno.h>
27#include <sys/param.h>
28
Eric Andersene77ae3a1999-10-19 20:03:34 +000029static const char mkdir_usage[] = "Usage: mkdir [OPTION] DIRECTORY...\n"
Eric Andersenf6be9441999-10-13 21:12:06 +000030"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";
Eric Andersencc8ed391999-10-05 16:24:54 +000033
Eric Andersenf6be9441999-10-13 21:12:06 +000034
35static int parentFlag = FALSE;
36static int permFlag = FALSE;
37static mode_t mode = 0777;
38
39
40extern int mkdir_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000041{
Eric Andersenf6be9441999-10-13 21:12:06 +000042 argc--;
43 argv++;
Eric Andersencc8ed391999-10-05 16:24:54 +000044
Eric Andersenf6be9441999-10-13 21:12:06 +000045 /* 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:
Eric Andersenb0e9a701999-10-18 22:28:26 +000056 usage( mkdir_usage);
Eric Andersenf6be9441999-10-13 21:12:06 +000057 }
58 argc--;
59 argv++;
60 }
61
62
63 if (argc < 1) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000064 usage( mkdir_usage);
Eric Andersenf6be9441999-10-13 21:12:06 +000065 }
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);
Eric Andersencc8ed391999-10-05 16:24:54 +000072 }
Eric Andersenf6be9441999-10-13 21:12:06 +000073 if (parentFlag == TRUE)
74 createPath(*argv, mode);
75 else {
76 if (mkdir (*argv, mode) != 0) {
77 perror(*argv);
78 exit( FALSE);
79 }
Eric Andersencc8ed391999-10-05 16:24:54 +000080 }
Eric Andersenf6be9441999-10-13 21:12:06 +000081 }
82 exit( TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000083}
84
Eric Andersencc8ed391999-10-05 16:24:54 +000085