我已經成功完成了一個批處理,幾乎可以做所有我想要的東西現在如何讓命令提示符窗口在執行後保持打開以供進一步輸入?命令提示符窗口在執行選擇後關閉
pushd %~dp0
@ECHO OFF
cls
title XNB NODE
:home
echo.
echo What would you like to do?
echo =============
echo.
echo 1) Extract all XNB files and output to YAML folder
echo 2) Pack all YAML files and output to XNB folder
echo 3) Exit
echo.
set /p web=Type option:
if "%web%"=="1" xnb_node.cmd extract Xnb Yaml
if "%web%"=="2" xnb_node.cmd pack Yaml Xnb
if "%web%"=="3" exit
goto home
請向我們展示您已完成的代碼。 –
'CMD'作爲文件擴展名通常表示該文件也是批處理文件(僅在Windows Server 2008和Windows Vista或更高版本中受支持)。嘗試在'xnb_node.cmd'之前插入'CALL'命令,例如'call xnb_node.cmd pack Yaml Xnb'。 –
CALL命令做到了!非常感謝! –