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

  1. /*Program 5_9 - Move a File from a Directory to Another
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Normally, moving a file from one directory to another involves
  5.   copying it and then deleting the original.  Not only is this
  6.   clumsy, but it adds to disk fracturing.  This program uses the
  7.   rename function to actually move a file.
  8. */
  9.  
  10. #include <stdio.h>
  11. #include <dir.h>
  12. #include <process.h>
  13. #include <string.h>
  14.  
  15. /*define global data*/
  16. char path [MAXPATH];
  17. char drive1 [MAXDRIVE], dir1 [MAXDIR], file1 [MAXFILE], ext1 [MAXEXT];
  18. char drive2 [MAXDRIVE], dir2 [MAXDIR], file2 [MAXFILE], ext2 [MAXEXT];
  19.  
  20. /*Main - parse the first argument, assumed to be the source, and the
  21.          second, assumed to be the target.  Check for validity and then
  22.          attempt the rename*/
  23. void main (argc, argv)
  24.      unsigned argc;
  25.      char *argv [];
  26. {
  27.      char *dptr, *fptr, *eptr;
  28.  
  29.      /*check the number of arguments first*/
  30.      if (argc != 3) {
  31.           printf ("Wrong number of arguments\n"
  32.                   "  try 'prg5_9 source dest' to move file 'source'\n"
  33.                   "  to file 'dest'\n");
  34.           exit (1);
  35.      }
  36.  
  37.      /*parse out the two file names*/
  38.      fnsplit (argv [1], drive1, dir1, file1, ext1);
  39.      fnsplit (argv [2], drive2, dir2, file2, ext2);
  40.  
  41.      /*if present, the disks must match*/
  42.      if (*drive2)
  43.           if (strcmp (drive1, drive2)) {
  44.                printf ("Drives must match\n");
  45.                exit (1);
  46.           }
  47.  
  48.      /*if second directory not present, assume the first*/
  49.      dptr = dir2;
  50.      if (!*dptr)
  51.           dptr = dir1;
  52.  
  53.      /*if second file not present, assume the first*/
  54.      fptr = file2;
  55.      if (!*fptr)
  56.           fptr = file1;
  57.  
  58.      /*if the second extension not present, assume the first*/
  59.      eptr = ext2;
  60.      if (!*eptr)
  61.           eptr = ext1;
  62.  
  63.      /*now execute the rename*/
  64.      fnmerge (path, drive1, dptr, fptr, eptr);
  65.      printf ("\nRenaming %s -> %s\n", argv [1], path);
  66.      if (rename (argv [1], path)) {
  67.           perror ("Rename error");
  68.           exit (1);
  69.      }
  70.  
  71.      /*exit normally*/
  72.      exit (0);
  73. }