IF Exist Do Statement(批处理文件)

时间:2011-05-13 21:09:56

标签: windows batch-file

请有人给我一个例子:

IF test.txt EXISTS DO start test.txt

2 个答案:

答案 0 :(得分:4)

你知道,你可以if /?help if

if exists file command

对于多个命令(或使用else时),用括号括起来,即

if exists file (
    command1
    command2
)

答案 1 :(得分:3)

示例 -

IF EXIST test.txt start test.txt