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.
その番号に応じて、フォルダーから特定のファイルを取得したい。たとえば、c: ドライブの ASP フォルダーから 3 番目のファイルが必要な場合、または同じフォルダーから 10 番目のファイルが必要な場合、VB.NET を使用してそれを取得するにはどうすればよいですか?
次のコードを試しましたが、特定のファイルについてはわかりません。
Dim Files() As String Files = IO.Directory.GetFiles("C:\VB")
!st ディレクトリからすべてのファイルを取得し、配列に保存します。その後、 FileInfo クラスを使用して、目的のファイル番号を渡すだけで特定のファイルを取得します。
Dim arr As String() = System.IO.Directory.GetFiles("C:\VB") Dim file As New FileInfo(arr(5))