home *** CD-ROM | disk | FTP | other *** search
- /*Program 5_9 - Move a File from a Directory to Another
- by Stephen R. Davis, 1987
-
- Normally, moving a file from one directory to another involves
- copying it and then deleting the original. Not only is this
- clumsy, but it adds to disk fracturing. This program uses the
- rename function to actually move a file.
- */
-
- #include <stdio.h>
- #include <dir.h>
- #include <process.h>
- #include <string.h>
-
- /*define global data*/
- char path [MAXPATH];
- char drive1 [MAXDRIVE], dir1 [MAXDIR], file1 [MAXFILE], ext1 [MAXEXT];
- char drive2 [MAXDRIVE], dir2 [MAXDIR], file2 [MAXFILE], ext2 [MAXEXT];
-
- /*Main - parse the first argument, assumed to be the source, and the
- second, assumed to be the target. Check for validity and then
- attempt the rename*/
- void main (argc, argv)
- unsigned argc;
- char *argv [];
- {
- char *dptr, *fptr, *eptr;
-
- /*check the number of arguments first*/
- if (argc != 3) {
- printf ("Wrong number of arguments\n"
- " try 'prg5_9 source dest' to move file 'source'\n"
- " to file 'dest'\n");
- exit (1);
- }
-
- /*parse out the two file names*/
- fnsplit (argv [1], drive1, dir1, file1, ext1);
- fnsplit (argv [2], drive2, dir2, file2, ext2);
-
- /*if present, the disks must match*/
- if (*drive2)
- if (strcmp (drive1, drive2)) {
- printf ("Drives must match\n");
- exit (1);
- }
-
- /*if second directory not present, assume the first*/
- dptr = dir2;
- if (!*dptr)
- dptr = dir1;
-
- /*if second file not present, assume the first*/
- fptr = file2;
- if (!*fptr)
- fptr = file1;
-
- /*if the second extension not present, assume the first*/
- eptr = ext2;
- if (!*eptr)
- eptr = ext1;
-
- /*now execute the rename*/
- fnmerge (path, drive1, dptr, fptr, eptr);
- printf ("\nRenaming %s -> %s\n", argv [1], path);
- if (rename (argv [1], path)) {
- perror ("Rename error");
- exit (1);
- }
-
- /*exit normally*/
- exit (0);
- }