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

  1. /*Program 5_8 - Opening a file in the "Home Directory"
  2.    by Stephen R. Davis, 1987
  3.  
  4.   When a file is not found to be present in the current directory,
  5.   it is usually advisable to look in the directory in which the
  6.   program resides before giving up.  Note that this program requires
  7.   DOS 3.x to function.
  8. */
  9.  
  10. #include <stdio.h>
  11. #include <dir.h>
  12. #include <fcntl.h>
  13. #include <io.h>
  14. #include <dos.h>
  15. #include <process.h>
  16.  
  17. /*globally defined data*/
  18.  
  19. char path [MAXPATH], drive [MAXDRIVE], dir [MAXDIR], file [MAXFILE];
  20. char ext [MAXEXT];
  21.  
  22. /*Main - try and open the file specified as the first argument.
  23.          If an error is returned, look in the home directory.*/
  24. void main (argc, argv)
  25.      unsigned argc;
  26.      char *argv [];
  27. {
  28.      unsigned handle, number;
  29.      char buffer [512];
  30.  
  31.      /*if error on opening in current directory...*/
  32.      if ((handle = open (argv [1], O_RDONLY)) == -1) {
  33.  
  34.           /*...and if this is running under DOS 3.x...*/
  35.           if (_osmajor < 3) {
  36.                printf ("Can't find file (try using DOS 3.x)\n");
  37.                exit (1);
  38.           }
  39.  
  40.           /*...look in home directory*/
  41.           fnsplit (argv [0], drive, dir,    0,   0);
  42.           fnsplit (argv [1],     0,   0, file, ext);
  43.           fnmerge (    path, drive, dir, file, ext);
  44.           if ((handle = open (path, O_RDONLY)) == -1) {
  45.                perror ("Can't find file");
  46.                exit (1);
  47.           }
  48.      }
  49.  
  50.      /*now copy the file to the screen*/
  51.      while (number = read (handle, buffer, 512))
  52.           fwrite (buffer, number, 1, stdout);
  53.  
  54.      /*and exit normally*/
  55.      exit (0);
  56. }
  57.