home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Multimedia Studio Effects
/
MULTIMEDIA.ISO
/
_debug
/
4.bat
< prev
next >
Wrap
DOS Batch File
|
1995-05-15
|
504b
|
33 lines
@echo off
rem Kill ini file in %2
REM CHECK FOR PARAM
if "%2" == "" goto noparam
rem check for dir
if not exist %2\nul goto nodir
rem check for file
if not exist %2\mmplus.ini goto nofile
Echo Deleting %2\MMPLUS.INI ...
del %2\Mmplus.ini
Echo Success!
goto exit
:noparam
Echo You must specify a directory.
Echo Example: DEBUG 4 C:\WIN31
GOTO EXIT
:nodir
Echo The Directory: %2 does not exist.
goto exit
:noFile
Echo The file: %2\MMPLUS.INI does not exist.
:exit