home *** CD-ROM | disk | FTP | other *** search
- /*Program 5_6 - Erase w/ Question
- by Stephen R. Davis, 1987
-
- One of the more glaring deficiencies in MS-DOS is the absence
- of a verify option on the delete command. Several public
- domain utilities have been created to rectify this problem.
- This program recreates that solution. It also serves as a
- simple example of the FindFirst/FindNext system calls.
-
- This program searches for any file which matches the first
- argument, which may contain disk drive, path and or wild-cards.
- The names of any files which match are presented to the user. If
- he enters a 'Y' or 'y', the file is deleted. Anything else, skips
- to the next file. Read_only files are not deleted and hidden files
- are not found.
- */
-
- #include <stdio.h>
- #include <dos.h>
- #include <dir.h>
- #include <ctype.h>
- #include <errno.h>
- #include <process.h>
- #include <conio.h>
-
- /*define our global data*/
- struct ffblk control_block;
- char path [MAXPATH], drive [MAXDRIVE], dir [MAXDIR], file [MAXFILE];
- char ext [MAXEXT];
-
- /*Main - search the given path; for all those found ask the user
- whether to delete them or not*/
- void main (argc, argv)
- unsigned argc;
- char *argv [];
- {
- /*check argument count (better be just one)*/
- if (argc != 2) {
- printf ("Wrong number of arguments\n"
- " try 'prg5_6 pattern' to erase w/ question\n");
- exit (1);
- }
-
- /*split the argument into file and directory*/
- fnsplit (argv [1], drive, dir, 0, 0);
-
- /*look for files which match the path provided*/
- if (findfirst (argv [1], &control_block, 0)) {
- fprintf (stderr, strerror ("error in path"));
- exit (1);
- }
-
- /*use this (and subsequent) files combined with our path*/
- do {
- /*build up the current file's name*/
- fnsplit (control_block.ff_name, 0, 0, file, ext);
- fnmerge (path, drive, dir, file, ext);
-
- /*prompt user*/
- printf ("\nErase %s? ", path);
- if (tolower (getche ()) == 'y')
- if (unlink (path))
- fprintf (stderr,
- strerror (" error erasing file"));
- } while (!findnext (&control_block));
-
- /*exit normally*/
- exit (0);
- }