我在src
文件夹中运行批处理文件。 build
文件夹是一级的。我想检查compiled.exe
是否已经在构建文件夹中。
set "compiledFile=%~dp0..\build\compiled.exe"
IF EXIST %compiledFile% (
echo compiled
) ELSE (
echo not compiled
)
奇怪的是,使用这些代码,IF
和ELSE
个案都会回显到控制台。
代码有什么问题,如何检查compiled.exe
文件夹中是否存在build
?
答案 0 :(得分:1)
试试这个
IF EXIST ..\build\compiled.exe