IfExist / IfNotExist

指定したファイルやディレクトリが存在するかどうかで分岐

IfExist, FilePattern
IfNotExist, FilePattern

Parameters

引数名説明
FilePattern パスやファイル名、ワイルドカード。
相対パスで記述された場合、%A_WorkingDir%から検索される。

Related

Blocks, Else, File-loops

Example(s)

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.