当前位置: 技术问答>linux和unix
●批处理中的if语句如何用?●
来源: 互联网 发布时间:2014-11-23
本文导语: 记得在批处理中可用if 这个命令,麻烦讲解一下它的语法。 在很多书上好象都没有讲解这个命令。 | if [not] exist filename command if [not] errorlevel n(n是数字) command if [not] %1=="参数" command ...
记得在批处理中可用if 这个命令,麻烦讲解一下它的语法。
在很多书上好象都没有讲解这个命令。
在很多书上好象都没有讲解这个命令。
|
if [not] exist filename command
if [not] errorlevel n(n是数字) command
if [not] %1=="参数" command (或者是%2、%3等)
if [not] errorlevel n(n是数字) command
if [not] %1=="参数" command (或者是%2、%3等)
|
可以这样用:
if exist c:windowswin.com call autoexec.bat
if not exist c:windowswin.com echo no this file
if exist c:windowswin.com call autoexec.bat
if not exist c:windowswin.com echo no this file