如果(条件)否则如果不存在(路径)否则(动作)不起作用

时间:2019-03-08 06:04:08

标签: if-statement file-exists

遵循我的批处理文件中的代码:

@echo off
:Test

set A=empty
set /p A= Path:

if %A%==empty (
    echo "You have not entered any Path"
    echo.
    goto Test
) else if not exist "%A%" (
    echo "Provided path not exist"
    echo.
    goto Test
) else (
    goto Exist
)
:Exist
echo Path Exist
pause

当输入路径为:

D:\Installed_Softwares\Test Folder\CXR22

批次自动关闭。

感谢您的帮助。

0 个答案:

没有答案