获取已连接USB设备列表
在处理USB设备时,常常需要获取所有已连接USB设备的列表。在Windows环境中,可以使用System.Management
命名空间的ManagementObjectSearcher
类来完成此任务。
首先,为您的项目添加对System.Management
的引用。完成此操作后,您可以使用以下代码片段来检索已连接的USB设备列表:
<code class="language-csharp">using System; using System.Collections.Generic; using System.Management; // 需要在项目引用中添加 System.Management。 class Program { static void Main(string[] args) { var usbDevices = GetUSBDevices(); foreach (var usbDevice in usbDevices) { Console.WriteLine( $"设备ID:{usbDevice.DeviceID},PnP设备ID:{usbDevice.PnpDeviceID},描述:{usbDevice.Description}"); } Console.ReadKey(); } static List<USBDeviceInfo> GetUSBDevices() { List<USBDeviceInfo> devices = new List<USBDeviceInfo>(); using var searcher = new ManagementObjectSearcher( @"Select * From Win32_USBHub"); using var collection = searcher.Get(); foreach (var device in collection) { devices.Add(new USBDeviceInfo( (string)device.GetPropertyValue("DeviceID"), (string)device.GetPropertyValue("PNPDeviceID"), (string)device.GetPropertyValue("Description") )); } return devices; } } class USBDeviceInfo { public USBDeviceInfo(string deviceID, string pnpDeviceID, string description) { DeviceID = deviceID; PnpDeviceID = pnpDeviceID; Description = description; } public string DeviceID { get; private set; } public string PnpDeviceID { get; private set; } public string Description { get; private set; } }</code>
上述代码片段中的GetUSBDevices()
方法返回一个USBDeviceInfo
对象的列表,其中包含DeviceID
、PNPDeviceID
和Description
属性。这些属性分别代表设备的唯一标识符、即插即用设备ID和设备的描述。
通过使用此代码,您可以轻松获取Windows计算机上所有已连接USB设备的列表,并访问其属性以进行进一步处理。
以上是如何在 Windows 中检索已连接的 USB 设备列表?的详细内容。更多信息请关注PHP中文网其他相关文章!