반응형
아래와 같이 파일 존재 유무 확인가능.
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.FileExists("C:\example\file.txt")
If objFile = True Then
WScript.Echo "파일이 존재합니다."
Else
WScript.Echo "파일이 존재하지 않습니다."
End If
반응형