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 >
Wrap
4DOS Compressed Batch-To-Memory File
|
1994-08-29
|
337b
|
25 lines
@echo off
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