问题如标题~
对于多个文件同时存在的判断中间的连接符不知怎么用?
类似编程语言中的 and ,or连接符...
大侠们请赐教下! 感谢- 例如我想判断名为1,2文件夹同时存在时的情况
- if exist %temp%\1 %temp%\2 goto end
复制代码
- 例外我想判断名为1,2文件夹只有一个存在时的情况
- if exist %temp%\1 not exist %temp%\2 goto end
复制代码
- 如果写2条单独的语句,含义就变了
- if exist %temp%\1 goto end
- if exist %temp%\2 goto end
复制代码
|