I am at least minimally familiar with using DIR and Filesearch to search a directory for specific files. However, I am not familiar with accessing a directory referenced through a url. Can either of these be used in this situation or do I need something else? Below is some code that I have tried. The result is no files.
With Application.FileSearch
.LookIn = " .FileType = msoFileTypeExcelWorkbooks
.Execute
MsgBox .FoundFiles.Count & " were found."
End With
With Application.FileSearch
.LookIn = " .FileType = msoFileTypeExcelWorkbooks
.Execute
MsgBox .FoundFiles.Count & " were found."
End With