标题: [其他] 批处理怎样根据输入的数字判断是否打开文档? [打印本页]
作者: 菜yang 时间: 2019-12-26 21:15 标题: 批处理怎样根据输入的数字判断是否打开文档?
我按照视频的改了改,为什么输入0没有打开文档,我另一个简单的bat就打开了文档,不明白为什么。。。。求助- @echo off
- echo +++++输入 0 回车 打开壁纸资源
- echo +++++输入 1 回车 打开记录
- echo +++++输入 2 回车 打开###
- echo +++++asdf
- set num=
- set /p num=执行操作
- if "%num%"=="0" ( start C:\Users\Administrator\Desktop\文档\壁纸.txt )
- if "%num%"=="2" ( start C:\Users\Administrator\Desktop\文档\记录.txt )
- if "%num%"=="3" ( error )
- echo ok
复制代码
这个输入0不显示文档- @echo off
- echo 回车显示壁纸资源网站
- pause
- start C:\Users\Administrator\Desktop\文档\壁纸.txt
复制代码
这个就可以
作者: /zhqsystem/zhq 时间: 2019-12-26 23:14
回复 1# 菜yang
第二行添加
:m
后续行修改
if "%num%"=="0" if not exist "%UserProfile%\Desktop\文档\壁纸.txt" (echo,文件不存在)else start "" "%UserProfile%\Desktop\文档\壁纸.txt" &&rem //这里可以接入跳转等
if "%num%"=="1" if not exist "%UserProfile%\Desktop\文档\记录.txt" (echo,文件不存在)else start "" "%UserProfile%\Desktop\文档\记录.txt" &&rem //这里可以接入跳转等
if "%num%"=="2" echo,error
if /i "%num%"=="e" exit
echo,没有选择任何数字自动循环返回
goto:m
作者: 菜yang 时间: 2019-12-27 19:56
回复 2# /zhqsystem/zhq
谢谢
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |