AUTOHOTKEY/레퍼런스
IfExist / IfNotExist 지정한 파일이나 디렉토리가 존재할지로 분기
님투
2007. 11. 5. 14:35
반응형
IfExist / IfNotExist
지정한 파일이나 디렉토리가 존재할지로 분기
IfExist, FilePattern IfNotExist, FilePattern
Parameters
인수명 | 설명 |
---|---|
FilePattern | 패스나 파일명, 와일드 카드. 상대 패스로 기술되었을 경우, %A_WorkingDir%(으)로부터 검색된다. |
Related
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.
반응형