type
status
date
slug
summary
tags
category
icon
password

1、if语句

语法
IF [NOT] ERRORLEVEL number command
IF [NOT] string1==string2 command
IF [NOT] EXIST filename command
if-else语法
if [not] 信息比较表达式 (命令行1
)else(命令行2)
if errorlevel 语句的特点: 当使用 if errorlevel 0 …… 的句式时,它的含义是:如果错误码的值大于或等于 0 的时候,将执行某个操作; 当使用 if %errorlevel%==0 …… 的句式时,它的含义是:如果错误码的值等于 0 的时候,将执行某操作
条件符:
条件符
含义
equ
=
neq
!=
lss
<
leq
gtr
>
geq
例子:
 

2、