Originally posted by chainliq at 2006-8-8 19:49:
@echo off
del/q D:\netgame\径舞团
del/q D:\netgame\街头篮球 {这样应该能删掉整个文件夹吧?}
del/q D:\netgame\跑跑卡丁车
以上程序,我想让它按编号 ...
为什么我写下面的这一段不行呢:(?)
@echo off
goto start
========================================
Written By IceCrack
July 23th,2006
=========================================
:start
cls
title 鑫源网吧游戏修复程序
color 0e
echo =========================================================================
echo 鑫源网吧游戏修复程序
echo 1.修复游戏( 径舞团)
echo 2.修复游戏( 街头篮球)
echo 3.修复游戏( 跑跑卡丁车)
echo 4.退出
set /p choice= 请输入你的选择 (1,2,3,4):
if /I "%choice%"=="" goto start
if /I %choice%==1 goto chat
if /I %choice%==2 goto chat1
if /I %choice%==3 goto chat2
if /I %choice%==4 goto quit
goto start
::建立临游戏修复程序
:chat
del/q D:\netgame\径舞团
goto start
:chat1
del/q D:\netgame\街头篮球
goto start1
:chat2
del/q D:\netgame\跑跑卡丁车
goto start2
echo =================================================
:quit
cls
echo.
echo.
echo.
echo =========================================================================
echo.
echo.
echo 感谢你使用
ECHO 按任意键退出.
echo.
echo.
echo =========================================================================
pause>nul 2>nul
exit