home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / podstawy / dos / 4dos / 4uzytki / delall10.exe / DELALL.BTM (.txt) < prev    next >
4DOS Compressed Batch-To-Memory File  |  1994-08-29  |  337b  |  25 lines

  1. @echo off
  2. iff "%1"=="" then 
  3.    echo Usage : DELALL [drive:][path]directory 
  4.    quit
  5. endiff
  6. iff isdir %1 then goto QUESTION
  7. else 
  8.    echo The directory "%1" does not exist!
  9.    echo DELALL aborted! 
  10.    quit
  11. endiff
  12.  
  13. :QUESTION
  14. input Delete directory "%1" and its subdirectories? [ny] %%choice
  15. iff "%choice"=="y" then goto REMOVE 
  16. else 
  17.    echo DELALL aborted! 
  18.    quit
  19. endiff
  20.  
  21. :REMOVE
  22. echo Deleting %1... 
  23. del /qsxyz %1 >& nul 
  24. quit
  25.