【VBScript】フォルダの存在チェック

VBScript

フォルダの存在チェック

フォルダの存在チェックをする方法です。

'構文
Set objFso = CreateObject("Scripting.FileSystemObject")
If objFso.FolderExists("フォルダのパス") Then
End If

'実行例
Set objFso = CreateObject("Scripting.FileSystemObject")
If objFso.FolderExists("C:\test") Then
   msgbox("存在する")
else
   msgbox("存在しない")
End If