我需要一个唯一标识USB闪存驱动器的ID。该ID应该已经存在于闪存驱动器上,因此它在我插入的每台PC上都是相同的ID。似乎PNPDeviceID不是唯一的。谁能证明这一点?如果它不是唯一的,是否有另一个ID可以唯一地识别USB闪存盘?
我已经阅读了这些答案,但它们无法帮我解决问题:
c#.NET USB device persistent identifier
编辑:
这是我编写的用于获取ID的内容。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Management;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication6
{
class USBDeviceInfo
{
public USBDeviceInfo(string deviceID, string pnpDeviceID, string description)
{
this.DeviceID = deviceID;
this.PnpDeviceID = pnpDeviceID;
this.Description = description;
}
public string DeviceID { get; private set; }
public string PnpDeviceID { get; private set; }
public string Description { get; private set; }
}
class Program
{
static List<string> Drives = new List<string>();
static List<USBDeviceInfo> GetUSBDevices()
{
List<USBDeviceInfo> devices = new List<USBDeviceInfo>();
ManagementObjectCollection collection;
using (var searcher = new ManagementObjectSearcher(@"Select * From Win32_USBHub"))
collection = searcher.Get();
foreach (var device in collection)
{
devices.Add(new USBDeviceInfo(
(string)device.GetPropertyValue("DeviceID"),
(string)device.GetPropertyValue("PNPDeviceID"),
(string)device.GetPropertyValue("Description")
));
}
collection.Dispose();
return devices;
}
static void Main(string[] args)
{
var usbDevices = GetUSBDevices();
foreach (var usbDevice in usbDevices)
{
// USB-Massenspeichergerät means USB mass storage device in english
if (usbDevice.Description.Equals("USB-Massenspeichergerät"))
{
Console.WriteLine(usbDevice.PnpDeviceID);
}
}
Console.ReadKey();
}
}
}
这是我从同一供应商的两个不同USB闪存驱动器获得的一些示例ID和完全相同的类型(如果我使用DeviceID或PNPDeviceID无关紧要,它们是相同的):
正如您所看到的,VID和PID是等效的。它们之间的唯一区别是'\'之后的数字。正如我在这里回答的那样PNPDeviceID Format,它似乎只是设备实例,由系统创建以识别闪存驱动器。所以在看完这个答案之后我不确定那是不是唯一的。