大佬们这种写法的if 判断文件不存在的时候怎么加 pause 或者 exit ?复制代码
- if exist %txt_1% (echo "123.txt 存在") else (echo "123.txt 不存在")
复制代码
- if exist "%txt_1%" (echo "123.txt 存在") else (echo "123.txt 不存在"&pause&exit)
复制代码
- if exist %txt_1% (
- echo "123.txt 存在"
- ) else (
- echo "123.txt 不存在"
- pause
- )
欢迎光临 批处理之家 (http://bbs.bathome.net/) | Powered by Discuz! 7.2 |