home *** CD-ROM | disk | FTP | other *** search
- /*Program 5_7 - Copy/Find all files matching a pattern
- by Stephen R. Davis, 1987
-
- Search all subdirectories for a particular file pattern. All files
- found matching that pattern are copied to the target path, if present.
-
- If a file is found on the target disk with the same name, it is not
- overwritten. Thus, if more than one file exists in the subdirectory
- tree with the same name, only the first one will get copied.
-
- It is possible to specify a starting point. For example,
- prg5_7 c:\user\*.* b:
- copies all of the files found in \USER and all of its subdirectories.
- */
-
- #include <stdio.h>
- #include <dir.h>
- #include <io.h>
- #include <dos.h>
- #include <process.h>
- #include <fcntl.h>
- #include <conio.h>
- #include <ctype.h>
-
- /*prototyping definitions*/
- void main (unsigned, char **);
- void copyall (char *, char *, char *);
- void copy (char *, char *);
- void append (char *, char *, char *);
-
- /*Main - parse user input and start the ball rolling*/
- void main (argc, argv)
- unsigned argc;
- char *argv [];
- {
- char sourcedisk [MAXDRIVE], sourcedir [MAXDIR];
- char sourcefile [MAXFILE], sourceext [MAXEXT];
- char fromdir [MAXPATH], pattern [MAXFILE+MAXEXT];
-
- /*check the argument count*/
- if (argc == 1 || argc > 3) {
- printf ("Wrong number of arguments\n"
- " try 'prg5_7 <source> [<dest>]' to copy all"
- " files from source and all of it's \n"
- " subdirectories to destination.\n"
- " e.g., prg5_7 c:\*.* d: to copy the entire\n"
- " contents of C disk to D.\n"
- " (Simply find if no destination present)\n");
- exit (1);
- }
-
- /*parse argument 1 into its two halves*/
- fnsplit (argv [1], sourcedisk, sourcedir, sourcefile, sourceext);
-
- /*now reconstruct the two halves*/
- fnmerge (fromdir, sourcedisk, sourcedir, 0, 0);
- fnmerge (pattern, 0, 0, sourcefile, sourceext);
-
- /*now just copy them all over*/
- copyall (fromdir, pattern, argv [2]);
-
- /*exit normally*/
- exit (0);
- }
-
- /*Copyall - copy all files matching a given pattern from the
- current directory and all subdirectories*/
- void copyall (fromdir, pattern, todir)
- char *fromdir, *pattern, *todir;
- {
- char spath [MAXPATH], tpath [MAXPATH];
- struct ffblk block;
-
- /*first copy all files patching the pattern*/
- append (spath, fromdir, pattern);
- if (!findfirst (spath, &block, 0))
- do {
- append (spath, fromdir, block.ff_name);
- append (tpath, todir, block.ff_name);
-
- /*if destination present, copy; else just find*/
- if (todir) {
- printf ("\nCopying %s -> %s", spath, tpath);
- copy (spath, tpath);
- } else {
- printf ("\nFound %s -- continue?", spath);
- if (tolower (getche ()) == 'n') exit (1);
- }
-
-
- } while (!findnext (&block));
-
- /*now check all subdirectories*/
- append (spath, fromdir, "*");
- if (!findfirst (spath, &block, FA_DIREC))
- do {
-
- /*only pay attention to directories*/
- if (block.ff_attrib & FA_DIREC)
-
- /*ignore directories '.' and '..'*/
- if (block.ff_name [0] != '.') {
-
- /*now tack on name of directory + '\'*/
- append (spath, fromdir, block.ff_name);
- append (spath, spath, "\\");
-
- /*and copy its contents too*/
- copyall (spath, pattern, todir);
- }
- } while (!findnext (&block));
- }
-
- /*Copy - given two patterns, copy the source to the destination file*/
- #define NSECT 17
- void copy (from, to)
- char *from, *to;
- {
- int fhandle, thandle, number;
- char buffer [NSECT*512];
-
- /*open the source for reading binary*/
- _fmode = O_BINARY;
- if ((fhandle = open (from, O_RDONLY)) == -1) {
- perror ("\nError opening source file");
- return;
- }
-
- /*now open the destination*/
- if ((thandle = creatnew (to, 0)) == -1) {
- perror ("\nError opening target file");
- close (fhandle);
- return;
- }
-
- /*now perform the copy*/
- while (number = read (fhandle, buffer, NSECT*512))
- if (number != _write (thandle, buffer, number)) {
- fprintf (stderr, "\nError on writing target file");
- break;
- }
- close (fhandle);
- close (thandle);
- }
-
- /*Append - concatenate two strings together*/
- void append (to, from1, from2)
- char *to, *from1, *from2;
- {
- /*copy the first string*/
- while (*from1)
- *to++ = *from1++;
-
- /*now the second*/
- while (*from2)
- *to++ = *from2++;
-
- /*and then tack on a terminator*/
- *to = '\0';
- }