For i = 1 To 40 Step 1
ChildFolderPath = ChildFolderPath & "\" & "LargeFolder" & i
If fso.FolderExists(ChildFolderPath) Then
MsgBox ("Folder Exists")
else
fso.CreateFolder (ChildFolderPath)
End If
Next
しかし、21 個のフォルダーを作成した後、「ファイル パスが見つかりません」というエラー 53 が表示されます。なんで?