如何使用批处理文件中不存在的情况搜索程序文件夹中的文件

发布于 2024-12-01 11:04:44 字数 165 浏览 2 评论 0原文

我正在编写一个批处理文件,在其中搜索类似

IF not exit "C:\Program Files\Bfsdfs\Fdsfsdfsde\dsfe.exe"

文件,并在 if else 中处理多个语句,但是这个无论文件是否存在,语句始终返回 false。

I am writing a batch file where I' m searching for a file like

IF not exist "C:\Program Files\Bfsdfs\Fdsfsdfsde\dsfe.exe"

and processing multiple statements in if else, but this statement always returns false, irrespective whether the file exist or not.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装迷糊 2024-12-08 11:04:44
IF not exist "C:\Program Files\Bfsdfs\Fdsfsdfsde\dsfe.exe" GOTO dosomething
@REM file found
...
GOTO :done

:dosomething
@REM file not found
...

:done
IF not exist "C:\Program Files\Bfsdfs\Fdsfsdfsde\dsfe.exe" GOTO dosomething
@REM file found
...
GOTO :done

:dosomething
@REM file not found
...

:done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文