home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Supergames 2
/
SupergamesVolume2.bin
/
doom099
/
doomit.bat
< prev
next >
Wrap
DOS Batch File
|
1994-04-11
|
308b
|
14 lines
@Echo off
if NOT exist c:\doomdata\*.* goto makeit
:doexist
echo Your DOOMDATA Directory on C: exists..... Running DOOM
DOOM
GOTO EXIT
:makeit
Echo There is NO DOOMDATA directory on C:..... Creating One
Md C:\DOOMDATA
xcopy doomdata c:\DOOMDATA /S
Echo Copying Done..... Running DOOM
DOOM
:EXIT