home *** CD-ROM | disk | FTP | other *** search
- @echo off
- Rem Kill threed.vbx in %2 dir.
-
- rem error checking
-
-
- rem check for parm
- if "%2" == "" goto noParm
-
- rem check for dir
- if not exist %2\nul goto nodir
-
- rem check for file
- if not exist %2\threed.vbx goto nofile
-
- Echo Deleting %2\THREED.VBX ...
- del %2\THREED.VBX
- Echo Success!
-
- goto exit
-
- :noparm
- Echo You must specify a directory.
- Echo Example: DEBUG 2 C:\WIN31
- GOTO EXIT
-
- :nodir
- Echo The Directory: %2 does not exist.
- goto exit
-
- :noFile
- Echo The file: %2\THREED.VBX does not exist.
-
- :exit
-