home *** CD-ROM | disk | FTP | other *** search
- /*Program 5_4 - Access File Attributes
- by Stephen R. Davis, 1987
-
- Use the _chmod() Turbo C library routine to access (both read
- and write) the attribute bits of a file
- */
-
- #include <stdio.h>
- #include <io.h>
- #include <process.h>
- #include <ctype.h>
-
- /*prototype definitions*/
- void display (unsigned);
- void main (unsigned, char **);
- unsigned gethval (char *);
- unsigned getyval (char *);
- void error (unsigned);
-
- /*define global data*/
- char *labels[] = {"read_only",
- "hidden",
- "system",
- "volume",
- "subdirectory",
- "archive"};
-
- char *errors[] = {"illegal",
- "Wrong number of arguments\n"
- "Try 'prog5_3 <filename>' to access attribute bits",
- "Failure accessing file attributes",
- "File attributes not changed"};
-
-
- /*Main - read the attribute bits and try to change them*/
- void main (argc, argv)
- unsigned argc;
- char *argv [];
- {
- unsigned attrib;
-
- /*first check for proper number of arguments*/
- if (argc != 2)
- error (1);
-
- /*now attempt to read the attributes of given file*/
- attrib = _chmod (argv [1], 0);
- if (attrib == -1)
- error (2);
-
- /*interpret them for the user*/
- printf ("Current attributes of %s are:\n", argv [1]);
- display (attrib);
-
- /*now let him change them*/
- do {
- attrib = gethval ("Enter new attribute");
- printf ("This would be:\n");
- display (attrib);
- } while (!getyval ("Is this ok? (Y/N)"));
-
- /*change the file's attributes*/
- if (attrib != _chmod (argv [1], 1, attrib))
- error (3);
- printf ("File's attributes are now:\n");
- display (_chmod (argv [1], 0));
-
- /*exit normally*/
- exit (0);
- }
-
- /*Display - interpret the attributes of a file*/
- void display (attrib)
- unsigned attrib;
- {
- unsigned count, bit, empty;
-
- /*first display numerically*/
- printf ("%x -> ", attrib);
-
- /*and then interpret*/
- empty = 1;
- for (bit = 1, count = 0; count < 5; bit <<= 1, count++)
- if (attrib & bit) {
- empty = 0;
- printf ("%s ", labels [count]);
- }
- if (empty)
- printf ("<none>");
- printf ("\n");
- }
-
- /*Gethval - prompt the user and get a hex value*/
- unsigned gethval (prompt)
- char *prompt;
- {
- unsigned answer;
-
- printf ("%s: ", prompt);
- scanf ("%x", &answer);
- getchar ();
- return answer;
- }
-
- /*Getyval - prompt user and return a 1 for Yes response, else 0*/
- unsigned getyval (prompt)
- char *prompt;
- {
- printf ("%s: ", prompt);
- return tolower (getchar ()) == 'y';
- }
-
- /*Error - print error number and quit*/
- void error (number)
- unsigned number;
- {
- printf ("error #%d: %s\n", number, errors [number]);
- exit (number);
- }