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))