Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
すべて同じ形式のxmlファイルでいっぱいのフォルダがありますが、ファイル名は常に変化しています。
Visual Basicで利用可能なすべてのファイルを調べて、すべてのファイルからデータを抽出できる方法があるかどうか疑問に思っています。
Dim di As System.IO.DirectoryInfo = New System.IO.DirectoryInfo("C:\Some Directory") Dim xmlFiles As System.IO.FileInfo() = di.GetFiles("*.xml") For Each xmlFile As System.IO.FileInfo In xmlFiles ' do some data processing here Next