AutoHotKey(오토핫키) 설명서 IfExist / IfNotExist

Posted by 발전소장
2014. 8. 14. 01:17 AutoHotKey/Commands

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.