home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / fileutils-3.12-src.lha / fileutils-3.12 / src / mkdir.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-12  |  3.9 KB  |  159 lines

  1. /* mkdir -- make directories
  2.    Copyright (C) 1990 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Options:
  19.    -p, --parent        Ensure that the given path(s) exist:
  20.             Make any missing parent directories for each argument.
  21.             Parent dirs default to umask modified by `u+wx'.
  22.             Do not consider an argument directory that already
  23.             exists to be an error.
  24.    -m, --mode=mode    Set the mode of created directories to `mode', which is
  25.             symbolic as in chmod and uses the umask as a point of
  26.             departure.
  27.  
  28.    David MacKenzie <djm@ai.mit.edu>  */
  29.  
  30. #include <config.h>
  31. #include <stdio.h>
  32. #include <getopt.h>
  33. #include <sys/types.h>
  34. #include "system.h"
  35. #include "modechange.h"
  36. #include "makepath.h"
  37. #include "version.h"
  38.  
  39. void error ();
  40.  
  41. static void usage ();
  42.  
  43. /* The name this program was run with. */
  44. char *program_name;
  45.  
  46. /* If nonzero, ensure that all parents of the specified directory exist.  */
  47. static int path_mode;
  48.  
  49. /* If non-zero, display usage information and exit.  */
  50. static int show_help;
  51.  
  52. /* If non-zero, print the version on standard output and exit.  */
  53. static int show_version;
  54.  
  55. static struct option const longopts[] =
  56. {
  57.   {"mode", required_argument, NULL, 'm'},
  58.   {"path", no_argument, &path_mode, 1},
  59.   {"parents", no_argument, &path_mode, 1},
  60.   {"help", no_argument, &show_help, 1},
  61.   {"version", no_argument, &show_version, 1},
  62.   {NULL, 0, NULL, 0}
  63. };
  64.  
  65. main (argc, argv)
  66.      int argc;
  67.      char **argv;
  68. {
  69.   unsigned int newmode;
  70.   unsigned int parent_mode;
  71.   char *symbolic_mode = NULL;
  72.   int errors = 0;
  73.   int optc;
  74.  
  75.   program_name = argv[0];
  76.   path_mode = 0;
  77.  
  78.   while ((optc = getopt_long (argc, argv, "pm:", longopts, (int *) 0)) != EOF)
  79.     {
  80.       switch (optc)
  81.     {
  82.     case 0:            /* Long option. */
  83.       break;
  84.     case 'p':
  85.       path_mode = 1;
  86.       break;
  87.     case 'm':
  88.       symbolic_mode = optarg;
  89.       break;
  90.     default:
  91.       usage (1);
  92.     }
  93.     }
  94.  
  95.   if (show_version)
  96.     {
  97.       printf ("%s\n", version_string);
  98.       exit (0);
  99.     }
  100.  
  101.   if (show_help)
  102.     usage (0);
  103.  
  104.   if (optind == argc)
  105.     {
  106.       error (0, 0, "too few arguments");
  107.       usage (1);
  108.     }
  109.  
  110.   newmode = 0777 & ~umask (0);
  111.   parent_mode = newmode | 0300;    /* u+wx */
  112.   if (symbolic_mode)
  113.     {
  114.       struct mode_change *change = mode_compile (symbolic_mode, 0);
  115.       if (change == MODE_INVALID)
  116.     error (1, 0, "invalid mode `%s'", symbolic_mode);
  117.       else if (change == MODE_MEMORY_EXHAUSTED)
  118.     error (1, 0, "virtual memory exhausted");
  119.       newmode = mode_adjust (newmode, change);
  120.     }
  121.  
  122.   for (; optind < argc; ++optind)
  123.     {
  124.       if (path_mode)
  125.     {
  126.       errors |= make_path (argv[optind], newmode, parent_mode,
  127.                    -1, -1, 1, NULL);
  128.     }
  129.       else if (mkdir (argv[optind], newmode))
  130.     {
  131.       error (0, errno, "cannot make directory `%s'", argv[optind]);
  132.       errors = 1;
  133.     }
  134.     }
  135.  
  136.   exit (errors);
  137. }
  138.  
  139. static void
  140. usage (status)
  141.      int status;
  142. {
  143.   if (status != 0)
  144.     fprintf (stderr, "Try `%s --help' for more information.\n",
  145.          program_name);
  146.   else
  147.     {
  148.       printf ("Usage: %s [OPTION] DIRECTORY...\n", program_name);
  149.       printf ("\
  150. \n\
  151.   -p, --parents     no error if existing, make parent directories as needed\n\
  152.   -m, --mode=MODE   set permission mode (as in chmod), not 0777 - umask\n\
  153.       --help        display this help and exit\n\
  154.       --version     output version information and exit\n");
  155.     }
  156.   exit (status);
  157. }
  158.  
  159.