If[Not]Exist

检查文件或文件夹是否存在.

不推荐: 这些命令不推荐在新脚本中使用. 使用 FileExist 函数代替.

IfExist, FilePattern
IfNotExist, FilePattern

参数

FilePattern

需检查的路径, 文件名或文件模式. 如果未指定绝对路径, 则假定 FilePattern%A_WorkingDir% 中.

相关

FileExist(), 区块, Else, 文件循环

示例

#1

IfExist, D:\
    MsgBox, The drive exists.
IfExist, D:\Docs\*.txt
    MsgBox, At least one .txt file exists.
IfNotExist, C:\Temp\FlagFile.txt
    MsgBox, The target file does not exist.