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

  1. /*Program 5_12 - Execute another Program
  2.    by Stephen R. Davis, 1987
  3.  
  4.   In addition to invoking simple procedures, a C program may also
  5.   invoke other programs.  While this may be costly in terms of
  6.   time, the technique is useful for programs which otherwise
  7.   will not fit into memory in their entirety.  User shells which
  8.   surrond DOS to provide a more user friendly interface also use
  9.   this approach.
  10.  
  11.   This program provides a "move all" capability to Prg5_9, which
  12.   can only move one file at a time.
  13. */
  14.  
  15. #include <stdio.h>
  16. #include <dir.h>
  17. #include <process.h>
  18.  
  19. /*define global data areas*/
  20. char path [MAXPATH], drive [MAXDRIVE], dir [MAXDIR];
  21. char file [MAXFILE], ext [MAXEXT];
  22. struct ffblk block;
  23.  
  24. /*we also need the name of the program to execute*/
  25. char *pname = {"prg5_9.exe"};
  26. char *pathname;
  27.  
  28. /*Main - Find all of the files matching argument 1 and pass
  29.          each one to Prg5_9 in turn*/
  30. void main (argc, argv, env)
  31.      int argc;
  32.      char *argv [];
  33.      char *env [];
  34. {
  35.      /*as always, check the argument count*/
  36.      if (argc != 3) {
  37.           printf ("Wrong number of arguments\n"
  38.                   "  try prg5_12 <source dir><pattern> <dest dir>\n"
  39.                   "  to move all files matching pattern from dir\n"
  40.                   "  source to dir destination\n");
  41.           exit (1);
  42.      }
  43.  
  44.      /*search for prg5_9 either in current directory or path*/
  45.      if (!(pathname = searchpath (pname))) {
  46.           printf ("Prg5_9 must be current directory or path\n");
  47.           exit (1);
  48.      }
  49.  
  50.      /*pull argument 1 apart to seperate directory and filename*/
  51.      fnsplit (argv [1], drive, dir, 0, 0);
  52.  
  53.      /*now search for all files matching pattern*/
  54.      if (findfirst (argv [1], &block, 0)) {
  55.           printf ("No files found\n");
  56.           exit (0);
  57.      }
  58.      do {
  59.           /*assemble the first file name*/
  60.           fnsplit (block.ff_name, 0, 0, file, ext);
  61.           fnmerge (path, drive, dir, file, ext);
  62.  
  63.           /*and pass this file off to prg5_9*/
  64.           if (spawnle (P_WAIT, pathname, pname, path, argv [2],
  65.                                            NULL, env)) {
  66.                printf ("\nError detected in subprocess\n");
  67.                exit (1);
  68.           }
  69.      } while (!findnext (&block));
  70.  
  71.      /*exit normally*/
  72.      exit (0);
  73. }
  74.