[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文件操作] [已解决]求助:为什么此批处理不调用我指定的另一批处理?

本帖最后由 Lornan 于 2014-12-10 09:54 编辑
  1. @echo off
  2. if exist 1.txt (echo --We found the file and its contents is :
  3. type 1.txt) else (echo --Sorry that we can not find the file)
  4. echo Do you need to start a program that may help you open another file ?
  5. set LT=
  6. set /P %LT%=Press Y to start the program or N to exit.
  7. if "%LT%"=="Y" (
  8. START TEST2.BAT
  9. ) ELSE (
  10. EXIT
  11. )
  12. PAUSE
复制代码
就上面的做成cmd的批处理,执行后输入Y就直接退出了…………我的文件夹里有1.txt 和test2.bat这两个文件。
感觉是哪写错了………………
Cease to struggle and you cease to live.

回复  ads350668398


    写上注释??
Lornan 发表于 2014-11-16 22:56



    我是新手 晕

TOP

回复 4# DAIC


    啊哦,对就是这,改了后就能用了。谢谢啦
Cease to struggle and you cease to live.

TOP

回复 2# ads350668398


    写上注释??
Cease to struggle and you cease to live.

TOP

把第六行里面的百分号全部删掉
1

评分人数

TOP

本帖最后由 ads350668398 于 2014-11-16 17:37 编辑

TOP

if "%LT%"=="Y" (
START TEST2.BAT
) ELSE (
EXIT
)
PAUSE
写上注释 完了我在告诉你那里改正过来

TOP

返回列表