如何使用BAT(批处理)文件一键打开某个文件
发布网友
发布时间:2022-04-23 03:54
我来回答
共1个回答
热心网友
时间:2022-05-15 12:14
展开1全部@echo
off
echo
code
by
冷眼看客
:input
echo
说明:
echo
1-C:,2-D:3-E:。。。
echo
...
set
/p
input=请输入数字:
if
"%input%"=="1"
start
/max
c:
if
"%input%"=="2"
start
/max
d:
if
"%input%"=="3"
start
/max
e:
if
"%input%"=="4"
start
/max
f:
if
"%input%"=="5"
start
/max
g:
goto
input