home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1995 November
/
PCWK1195.iso
/
inne
/
podstawy
/
dos
/
4dos
/
4uzytki
/
delall10.exe
/
DELALL.BAT
next >
Wrap
DOS Batch File
|
1994-08-29
|
664b
|
30 lines
@echo off
REM
REM DELALL ver. 1.0 Created by John Militano (UMMILIT2@CC.UMANITOBA.CA)
REM Please send any comments or suggestions to the above email address
REM DELALL is FREEWARE...See DELALL.TXT for more info
REM
iff "%1"=="" then
echo Usage : DELALL [drive:][path]directory
quit
endiff
iff isdir %1 then goto QUESTION
else
echo The directory "%1" does not exist!
echo DELALL aborted!
quit
endiff
:QUESTION
input Delete directory "%1" and its subdirectories? [ny] %%choice
iff "%choice"=="y" then goto REMOVE
else
echo DELALL aborted!
quit
endiff
:REMOVE
echo Deleting %1...
del /qsxyz %1 >& nul
quit