2013-03-23 110 views
1

似乎只要我運行我的批處理文件,一切都會運行,它會進入checkfiles,但它不會運行if語句。沒有任何回報,它只是跳到代碼的最後部分。批處理文件跳過如果語句

:file_check 
if exist "%psychedelia%\nhc.exe" (goto file_exists) else (timeout /t 1 /nobreak > output) 
goto file_check 

:file_exists 
copy /Y "%~dp0version.txt" "%psychedelia%" 

:checkfiles 
echo in checkfiles 
if exist "%psychedelia%\wa.exe" if exist "%psychedelia%\readme.txt" if exist "%psychedelia%\HD.BLB" if exist "%psychedelia%\smackw32.dll" if exist "%psychedelia%\setup95.exe" if exist "%psychedelia%\WAVistaWin7.exe" (
    echo MSGBOX "Thank you for installing the Neverhood. You may now go to your desktop and click on the Orpheus shortcut to play!" > %temp%\TEMPxmessage.vbs 
    call %temp%\TEMPxmessage.vbs 
    del %temp%\TEMPxmessage.vbs /f /q 
    rename "%psychedelia%\nhc.exe" wa.exe 
    timeout /t 1 /nobreak > output 
    taskkill.exe /F /IM setup95.exe /T 
) else ( 
    echo nonexistent 
    pause 
    timeout /t 1 /nobreak > output 
    goto checkfiles 
) 

非常感謝所有幫助。

+0

什麼是你的問題都與'vbscript'?這完全是一個批處理文件問題。請只使用適用於您問題的標籤。如果您不確定是否適用,請閱讀選擇時顯示在其下方的標籤說明。標籤用於對問題進行分類,以便它們可以位於搜索中,因此它們會引起對該主題有疑問的人的關注。謝謝。 – 2013-03-23 03:52:18

回答

1

嘗試:

... 
echo in checkfiles 
for %%f in (wa.exe 
      readme.txt 
      HD.BLB 
      smackw32.dll 
      setup95.exe 
      WAVistaWin7.exe 
      ) do if not exist "%psychedelia%\%%f" (
    echo %%f nonexistent 
    pause 
    timeout /t 1 /nobreak > output 
    goto checkfiles 
    ) 

:: all required files found 

echo MSGBOX "Thank you for installing the Neverhood. You may now go to your desktop and click on the Orpheus shortcut to play!" > %temp%\TEMPxmessage.vbs 
call %temp%\TEMPxmessage.vbs 
del %temp%\TEMPxmessage.vbs /f /q 
rename "%psychedelia%\nhc.exe" wa.exe 
timeout /t 1 /nobreak > output 
taskkill.exe /F /IM setup95.exe /T 

這可能是更容易維護。

事實上,你甚至可以寫

set requiredfiles=wa.exe readme.txt HD.BLB smackw32.dll setup95.exe WAVistaWin7.exe 
for %%f in (%requiredfiles%) do if not exist "%psychedelia%\%%f" (
... 

這將是更容易。

但請接受Nate Hekman的答案 - 這只是一個BTW *

+0

獨創性。非常感謝你。 – cygorx 2013-04-01 13:32:46

3

該行上只有最後一個if exist有圓括號,所以else只適用於最後一個。如果任何第一個評估爲錯誤,它將會跳過整個事情。

+0

謝謝。剛剛打開了一些括號。 – cygorx 2013-03-23 16:08:23