home *** CD-ROM | disk | FTP | other *** search
- /*Program 5_12 - Execute another Program
- by Stephen R. Davis, 1987
-
- In addition to invoking simple procedures, a C program may also
- invoke other programs. While this may be costly in terms of
- time, the technique is useful for programs which otherwise
- will not fit into memory in their entirety. User shells which
- surrond DOS to provide a more user friendly interface also use
- this approach.
-
- This program provides a "move all" capability to Prg5_9, which
- can only move one file at a time.
- */
-
- #include <stdio.h>
- #include <dir.h>
- #include <process.h>
-
- /*define global data areas*/
- char path [MAXPATH], drive [MAXDRIVE], dir [MAXDIR];
- char file [MAXFILE], ext [MAXEXT];
- struct ffblk block;
-
- /*we also need the name of the program to execute*/
- char *pname = {"prg5_9.exe"};
- char *pathname;
-
- /*Main - Find all of the files matching argument 1 and pass
- each one to Prg5_9 in turn*/
- void main (argc, argv, env)
- int argc;
- char *argv [];
- char *env [];
- {
- /*as always, check the argument count*/
- if (argc != 3) {
- printf ("Wrong number of arguments\n"
- " try prg5_12 <source dir><pattern> <dest dir>\n"
- " to move all files matching pattern from dir\n"
- " source to dir destination\n");
- exit (1);
- }
-
- /*search for prg5_9 either in current directory or path*/
- if (!(pathname = searchpath (pname))) {
- printf ("Prg5_9 must be current directory or path\n");
- exit (1);
- }
-
- /*pull argument 1 apart to seperate directory and filename*/
- fnsplit (argv [1], drive, dir, 0, 0);
-
- /*now search for all files matching pattern*/
- if (findfirst (argv [1], &block, 0)) {
- printf ("No files found\n");
- exit (0);
- }
- do {
- /*assemble the first file name*/
- fnsplit (block.ff_name, 0, 0, file, ext);
- fnmerge (path, drive, dir, file, ext);
-
- /*and pass this file off to prg5_9*/
- if (spawnle (P_WAIT, pathname, pname, path, argv [2],
- NULL, env)) {
- printf ("\nError detected in subprocess\n");
- exit (1);
- }
- } while (!findnext (&block));
-
- /*exit normally*/
- exit (0);
- }