home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Multimedia Studio Effects
/
MULTIMEDIA.ISO
/
_debug
/
6.bat
< prev
next >
Wrap
DOS Batch File
|
1995-05-15
|
360b
|
25 lines
@echo off
rem Kill PRODUCT FROM %2
rem check for parm
if "%2" == "" goto noParm
rem check for dir
if not exist %2\nul goto nodir
Echo Deleting %2 ...
delTREE %2
Echo Success!
goto exit
:noparm
Echo You must specify a directory.
Echo Example: DEBUG 6 C:\APPS\SIGHTSND
GOTO EXIT
:nodir
Echo The Directory: %2 does not exist.
:exit