标题: [文件操作] [已解决]求助:为什么此批处理不调用我指定的另一批处理? [打印本页]
作者: Lornan 时间: 2014-11-16 16:15 标题: [已解决]求助:为什么此批处理不调用我指定的另一批处理?
本帖最后由 Lornan 于 2014-12-10 09:54 编辑
- @echo off
- if exist 1.txt (echo --We found the file and its contents is :
- type 1.txt) else (echo --Sorry that we can not find the file)
- echo Do you need to start a program that may help you open another file ?
- set LT=
- set /P %LT%=Press Y to start the program or N to exit.
- if "%LT%"=="Y" (
- START TEST2.BAT
- ) ELSE (
- EXIT
- )
- PAUSE
复制代码
就上面的做成cmd的批处理,执行后输入Y就直接退出了…………我的文件夹里有1.txt 和test2.bat这两个文件。
感觉是哪写错了………………
作者: ads350668398 时间: 2014-11-16 17:33
if "%LT%"=="Y" (
START TEST2.BAT
) ELSE (
EXIT
)
PAUSE
写上注释 完了我在告诉你那里改正过来
作者: ads350668398 时间: 2014-11-16 17:36
本帖最后由 ads350668398 于 2014-11-16 17:37 编辑
作者: DAIC 时间: 2014-11-16 20:16
把第六行里面的百分号全部删掉
作者: Lornan 时间: 2014-11-16 22:56
回复 2# ads350668398
写上注释??
作者: Lornan 时间: 2014-11-16 22:59
回复 4# DAIC
啊哦,对就是这,改了后就能用了。谢谢啦
作者: ads350668398 时间: 2014-11-16 23:18
回复 ads350668398
写上注释??
Lornan 发表于 2014-11-16 22:56
我是新手 晕
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |