home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / podstawy / dos / 4dos / 4uzytki / delall10.exe / DELALL.BAT next >
DOS Batch File  |  1994-08-29  |  664b  |  30 lines

  1. @echo off
  2. REM
  3. REM DELALL ver. 1.0 Created by John Militano (UMMILIT2@CC.UMANITOBA.CA)
  4. REM Please send any comments or suggestions to the above email address
  5. REM DELALL is FREEWARE...See DELALL.TXT for more info
  6. REM
  7. iff "%1"=="" then 
  8.    echo Usage : DELALL [drive:][path]directory 
  9.    quit
  10. endiff
  11. iff isdir %1 then goto QUESTION
  12. else 
  13.    echo The directory "%1" does not exist!
  14.    echo DELALL aborted! 
  15.    quit
  16. endiff
  17.  
  18. :QUESTION
  19. input Delete directory "%1" and its subdirectories? [ny] %%choice
  20. iff "%choice"=="y" then goto REMOVE 
  21. else 
  22.    echo DELALL aborted! 
  23.    quit
  24. endiff
  25.  
  26. :REMOVE
  27. echo Deleting %1... 
  28. del /qsxyz %1 >& nul 
  29. quit
  30.