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

  1. /*Program 5_6 - Erase w/ Question
  2.    by Stephen R. Davis, 1987
  3.  
  4.   One of the more glaring deficiencies in MS-DOS is the absence
  5.   of a verify option on the delete command.  Several public
  6.   domain utilities have been created to rectify this problem.
  7.   This program recreates that solution.  It also serves as a
  8.   simple example of the FindFirst/FindNext system calls.
  9.  
  10.   This program searches for any file which matches the first
  11.   argument, which may contain disk drive, path and or wild-cards.
  12.   The names of any files which match are presented to the user.  If
  13.   he enters a 'Y' or 'y', the file is deleted.  Anything else, skips
  14.   to the next file.  Read_only files are not deleted and hidden files
  15.   are not found.
  16. */
  17.  
  18. #include <stdio.h>
  19. #include <dos.h>
  20. #include <dir.h>
  21. #include <ctype.h>
  22. #include <errno.h>
  23. #include <process.h>
  24. #include <conio.h>
  25.  
  26. /*define our global data*/
  27. struct ffblk control_block;
  28. char path [MAXPATH], drive [MAXDRIVE], dir [MAXDIR], file [MAXFILE];
  29. char ext [MAXEXT];
  30.  
  31. /*Main - search the given path; for all those found ask the user
  32.          whether to delete them or not*/
  33. void main (argc, argv)
  34.      unsigned argc;
  35.      char *argv [];
  36. {
  37.      /*check argument count (better be just one)*/
  38.      if (argc != 2) {
  39.           printf ("Wrong number of arguments\n"
  40.                   "   try 'prg5_6 pattern' to erase w/ question\n");
  41.           exit (1);
  42.      }
  43.  
  44.      /*split the argument into file and directory*/
  45.      fnsplit (argv [1], drive, dir, 0, 0);
  46.  
  47.      /*look for files which match the path provided*/
  48.      if (findfirst (argv [1], &control_block, 0)) {
  49.           fprintf (stderr, strerror ("error in path"));
  50.           exit (1);
  51.      }
  52.  
  53.      /*use this (and subsequent) files combined with our path*/
  54.      do {
  55.           /*build up the current file's name*/
  56.           fnsplit (control_block.ff_name, 0, 0, file, ext);
  57.           fnmerge (path, drive, dir, file, ext);
  58.  
  59.           /*prompt user*/
  60.           printf ("\nErase %s? ", path);
  61.           if (tolower (getche ()) == 'y')
  62.                if (unlink (path))
  63.                     fprintf (stderr,
  64.                          strerror ("    error erasing file"));
  65.      } while (!findnext (&control_block));
  66.  
  67.      /*exit normally*/
  68.      exit (0);
  69. }