home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / VDEL.ZIP / VDEL.δ < prev   
Encoding:
Text File  |  1988-09-13  |  1.2 KB  |  33 lines

  1. VDEL.EXE
  2.  
  3. FUNCTION:  A file deletion program that asks confirmation for each delete.
  4.            VDEL works very much like the DOS "DEL" command, except that it
  5.            prompts the user on a file-by-file basis as to whether each file
  6.            should be deleted.  Version 1.1, 9-13-88.
  7.  
  8. USAGE:     VDEL {path}[filename] /N /A /T
  9.  
  10.            Wildcards (* and ?) may be used.
  11.  
  12. OPTIONS:
  13.            /N - No verification
  14.            /A - All files: include read only, system, and hidden files
  15.            /T - Test; shows only the files that would be selected, but does
  16.                 not delete any files.
  17.  
  18. EXAMPLE:  VDEL *.BAK
  19.  
  20. Presenting selected files in D:\TOOLS\DOC1\
  21.  
  22. File Name    Attrs.      Size  Date      Time        Action (Q to quit)
  23. ───────────────────────────────────────────────────────────────────────
  24. ALTER.DOC     A         1,622  11-10-87  00:01 am -- Delete?  (Y or N)
  25. ANALYZE2.DOC  A         1,155  11-10-87  00:01 am -- Delete?  (Y or N)√
  26. ANSI&2K.DOC   A         1,192  11-10-87  00:01 am -- Delete?  (Y or N)
  27. ANSWER.DOC    A         2,036  11-10-87  00:01 am -- Delete?  (Y or N)
  28.  
  29. Number of files deleted: 1
  30.  
  31. Processing done.
  32.  
  33. «═»