home *** CD-ROM | disk | FTP | other *** search
- /*Program 5_8 - Opening a file in the "Home Directory"
- by Stephen R. Davis, 1987
-
- When a file is not found to be present in the current directory,
- it is usually advisable to look in the directory in which the
- program resides before giving up. Note that this program requires
- DOS 3.x to function.
- */
-
- #include <stdio.h>
- #include <dir.h>
- #include <fcntl.h>
- #include <io.h>
- #include <dos.h>
- #include <process.h>
-
- /*globally defined data*/
-
- char path [MAXPATH], drive [MAXDRIVE], dir [MAXDIR], file [MAXFILE];
- char ext [MAXEXT];
-
- /*Main - try and open the file specified as the first argument.
- If an error is returned, look in the home directory.*/
- void main (argc, argv)
- unsigned argc;
- char *argv [];
- {
- unsigned handle, number;
- char buffer [512];
-
- /*if error on opening in current directory...*/
- if ((handle = open (argv [1], O_RDONLY)) == -1) {
-
- /*...and if this is running under DOS 3.x...*/
- if (_osmajor < 3) {
- printf ("Can't find file (try using DOS 3.x)\n");
- exit (1);
- }
-
- /*...look in home directory*/
- fnsplit (argv [0], drive, dir, 0, 0);
- fnsplit (argv [1], 0, 0, file, ext);
- fnmerge ( path, drive, dir, file, ext);
- if ((handle = open (path, O_RDONLY)) == -1) {
- perror ("Can't find file");
- exit (1);
- }
- }
-
- /*now copy the file to the screen*/
- while (number = read (handle, buffer, 512))
- fwrite (buffer, number, 1, stdout);
-
- /*and exit normally*/
- exit (0);
- }