如何在 VB.NET 中查找 USB 设备的名称?

问题描述 投票:0回答:1

我正在尝试找出如何查找 USB 设备的名称并将其放入 VB.NET 表单的数据表中。

我还没有尝试过任何东西,因为我不知道该怎么做,因为我对如何使用 VB.NET 不太了解。

vb.net usb
1个回答
0
投票

您可以使用

System.IO.DriveInfo.GetDrives()
获取已连接的驱动器列表。然后,您可以通过检查特定驱动器的 DriveType 来确定该驱动器是否为 USB 驱动器。

例如:

    Dim usbDrives As New Generic.List(Of String)

    'Iterate over all the available drives
    For Each drive As System.IO.DriveInfo In System.IO.DriveInfo.GetDrives()
        ' Check if is removable (USB)
        If drive.DriveType = System.IO.DriveType.Removable Then
            usbDrives.Add(drive.Name) 'Or, you can use drive.VolumeLabel
        End If
    Next

现在,您可以在数据表中显示

usbDrives
的内容了。

© www.soinside.com 2019 - 2024. All rights reserved.