home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / fileutils-3.6 / src / mkdir.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-14  |  3.3 KB  |  141 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, --path        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 <stdio.h>
  31. #include <getopt.h>
  32. #include <sys/types.h>
  33. #include "system.h"
  34. #include "modechange.h"
  35. #include "version.h"
  36.  
  37. int make_path ();
  38. void error ();
  39.  
  40. static void usage ();
  41.  
  42. /* The name this program was run with. */
  43. char *program_name;
  44.  
  45. /* If nonzero, ensure that a path exists.  */
  46. static int path_mode;
  47.  
  48. /* If non-zero, display usage information and exit.  */
  49. static int flag_help;
  50.  
  51. /* If non-zero, print the version on standard error.  */
  52. static int flag_version;
  53.  
  54. static struct option const longopts[] =
  55. {
  56.   {"mode", required_argument, NULL, 'm'},
  57.   {"path", no_argument, &path_mode, 1},
  58.   {"help", no_argument, &flag_help, 1},
  59.   {"version", no_argument, &flag_version, 1},
  60.   {NULL, 0, NULL, 0}
  61. };
  62.  
  63. void
  64. main (argc, argv)
  65.      int argc;
  66.      char **argv;
  67. {
  68.   unsigned int newmode;
  69.   unsigned int parent_mode;
  70.   char *symbolic_mode = NULL;
  71.   int errors = 0;
  72.   int optc;
  73.  
  74.   program_name = argv[0];
  75.   path_mode = 0;
  76.  
  77.   while ((optc = getopt_long (argc, argv, "pm:", longopts, (int *) 0)) != EOF)
  78.     {
  79.       switch (optc)
  80.     {
  81.     case 0:            /* Long option. */
  82.       break;
  83.     case 'p':
  84.       path_mode = 1;
  85.       break;
  86.     case 'm':
  87.       symbolic_mode = optarg;
  88.       break;
  89.     default:
  90.       usage ();
  91.     }
  92.     }
  93.  
  94.   if (flag_version)
  95.     {
  96.       fprintf (stderr, "%s\n", version_string);
  97.       exit (0);
  98.     }
  99.  
  100.   if (flag_help)
  101.     usage ();
  102.  
  103.   if (optind == argc)
  104.     usage ();
  105.  
  106.   newmode = 0777 & ~umask (0);
  107.   parent_mode = newmode | 0300;    /* u+wx */
  108.   if (symbolic_mode)
  109.     {
  110.       struct mode_change *change = mode_compile (symbolic_mode, 0);
  111.       if (change == MODE_INVALID)
  112.     error (1, 0, "invalid mode `%s'", symbolic_mode);
  113.       else if (change == MODE_MEMORY_EXHAUSTED)
  114.     error (1, 0, "virtual memory exhausted");
  115.       newmode = mode_adjust (newmode, change);
  116.     }
  117.  
  118.   for (; optind < argc; ++optind)
  119.     {
  120.       if (path_mode)
  121.     errors |= make_path (argv[optind], newmode, parent_mode, -1, -1, NULL);
  122.       else if (mkdir (argv[optind], newmode))
  123.     {
  124.       error (0, errno, "cannot make directory `%s'", argv[optind]);
  125.       errors = 1;
  126.     }
  127.     }
  128.  
  129.   exit (errors);
  130. }
  131.  
  132. static void
  133. usage ()
  134. {
  135.   fprintf (stderr, "\
  136. Usage: %s [-p] [-m mode] [--path] [--mode=mode] [--help] [--version] dir...\n",
  137.        program_name);
  138.   exit (1);
  139. }
  140.  
  141.