Windows 7 中的批处理文件。
我想知道如何测试带有扩展名的路径 + 文件名是否存在。
我已尝试过如果存在“myfile.ext”但似乎看不到该文件。
非常感谢您的帮助。
答案1
正确的命令是EXIST
,而不是“存在”。
从if /?
:
EXIST filename Specifies a true condition if the specified filename
exists.
例子:
if exist "myfile.txt" echo Found!
您可以根据需要添加路径:
if exist "c:\Some folder\myfile.txt" echo Found!