home *** CD-ROM | disk | FTP | other *** search
- /*Program 5_5 - Change Disk and Directory
- by Stephen R. Davis, 1987
-
- Change disk and directory at the same time. Both disk and directory
- are optional. If either is missing, the current disk or directory
- is assumed. If both are missing, the value of the environment
- label DEFAULT is used.
- */
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <dir.h>
- #include <process.h>
- #include <ctype.h>
-
- #define MAXDISK 5
-
- /*prototype definitions*/
- void main (unsigned, char **);
- unsigned parse (char *);
-
- /*global variables*/
- unsigned disk;
- char *directory;
- char defaultdir [132];
-
- /*Main - load up default fcb, then parse the input argument and
- finally set the disk and directory*/
- void main (argc, argv)
- unsigned argc;
- char *argv[];
- {
- /*check the number of arguments*/
- if (argc > 2) {
- printf ("Wrong number of arguments\n"
- " try '%s [pathname]'\n",
- argv [0]);
- exit (1);
- }
-
- /*if no argument provided, get the argument from the environment*/
- if (argc == 1)
- if (argv [1] = getenv ("DEFAULT"))
- printf ("Using default directory\n");
-
- /*if no argument present, just display the defaults*/
- if (!argv [1]) {
- disk = getdisk ();
- getcurdir (disk + 1, defaultdir);
- printf ("%c:%s", (char)(disk + 'A'), defaultdir);
- } else {
-
- /*if present, parse the input argument into drive and directory*/
- if (parse (argv [1])) {
- printf ("Illegal input: %s\n", argv [1]);
- exit (1);
- }
-
- /*now set the disk and directory*/
- setdisk (disk);
- if (chdir (directory)) {
- printf ("Directory %s does not exist\n", directory);
- exit (1);
- }
- }
-
- /*exit normally*/
- exit (0);
- }
-
- /*Parse - parse out the disk from the file name*/
- unsigned parse (ptr)
- char *ptr;
- {
- /*first check for the presence of a disk*/
- if (ptr [1] == ':') {
- disk = (unsigned)(toupper (ptr [0]) - 'A');
- if (disk > MAXDISK)
- return -1;
- directory = ptr + 2;
- }
- else {
- disk = getdisk ();
- directory = ptr;
- }
-
- /*if no directory present, change to '.'*/
- if (*directory == '\0') {
- directory = ".";
- }
-
- /*return success*/
- return 0;
- }