home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG5_4.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  2.9 KB  |  120 lines

  1. /*Program 5_4 - Access File Attributes
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Use the _chmod() Turbo C library routine to access (both read
  5.   and write) the attribute bits of a file
  6. */
  7.  
  8. #include <stdio.h>
  9. #include <io.h>
  10. #include <process.h>
  11. #include <ctype.h>
  12.  
  13. /*prototype definitions*/
  14. void display (unsigned);
  15. void main (unsigned, char **);
  16. unsigned gethval (char *);
  17. unsigned getyval (char *);
  18. void error (unsigned);
  19.  
  20. /*define global data*/
  21. char *labels[] = {"read_only",
  22.           "hidden",
  23.           "system",
  24.                   "volume",
  25.                   "subdirectory",
  26.                   "archive"};
  27.  
  28. char *errors[] = {"illegal",
  29.                   "Wrong number of arguments\n"
  30.                   "Try 'prog5_3 <filename>' to access attribute bits",
  31.                   "Failure accessing file attributes",
  32.                   "File attributes not changed"};
  33.  
  34.  
  35. /*Main - read the attribute bits and try to change them*/
  36. void main (argc, argv)
  37.      unsigned argc;
  38.      char *argv [];
  39. {
  40.      unsigned attrib;
  41.  
  42.      /*first check for proper number of arguments*/
  43.      if (argc != 2)
  44.           error (1);
  45.  
  46.      /*now attempt to read the attributes of given file*/
  47.      attrib = _chmod (argv [1], 0);
  48.      if (attrib == -1)
  49.           error (2);
  50.  
  51.      /*interpret them for the user*/
  52.      printf ("Current attributes of %s are:\n", argv [1]);
  53.      display (attrib);
  54.  
  55.      /*now let him change them*/
  56.      do {
  57.           attrib = gethval ("Enter new attribute");
  58.           printf ("This would be:\n");
  59.           display (attrib);
  60.         } while (!getyval ("Is this ok? (Y/N)"));
  61.  
  62.      /*change the file's attributes*/
  63.      if (attrib != _chmod (argv [1], 1, attrib))
  64.           error (3);
  65.      printf ("File's attributes are now:\n");
  66.      display (_chmod (argv [1], 0));
  67.  
  68.      /*exit normally*/
  69.      exit (0);
  70. }
  71.  
  72. /*Display - interpret the attributes of a file*/
  73. void display (attrib)
  74.      unsigned attrib;
  75. {
  76.      unsigned count, bit, empty;
  77.  
  78.      /*first display numerically*/
  79.      printf ("%x -> ", attrib);
  80.  
  81.      /*and then interpret*/
  82.      empty = 1;
  83.      for (bit = 1, count = 0; count < 5; bit <<= 1, count++)
  84.           if (attrib & bit) {
  85.                empty = 0;
  86.                printf ("%s  ", labels [count]);
  87.           }
  88.      if (empty)
  89.           printf ("<none>");
  90.      printf ("\n");
  91. }
  92.  
  93. /*Gethval - prompt the user and get a hex value*/
  94. unsigned gethval (prompt)
  95.      char *prompt;
  96. {
  97.      unsigned answer;
  98.  
  99.      printf ("%s: ", prompt);
  100.      scanf ("%x", &answer);
  101.      getchar ();
  102.      return answer;
  103. }
  104.  
  105. /*Getyval - prompt user and return a 1 for Yes response, else 0*/
  106. unsigned getyval (prompt)
  107.      char *prompt;
  108. {
  109.      printf ("%s: ", prompt);
  110.      return tolower (getchar ()) == 'y';
  111. }
  112.  
  113. /*Error - print error number and quit*/
  114. void error (number)
  115.      unsigned number;
  116. {
  117.      printf ("error #%d: %s\n", number, errors [number]);
  118.      exit (number);
  119. }
  120.