识别USB大容量存储设备

时间:2014-06-02 06:16:58

标签: c++ windows winapi

上下文:我的应用程序将数据写入USB,CD和CD DVD。我正在使用RegisterDeviceNotification来检测设备更改。为了确保连接的设备是基于USB的存储设备,我正在使用DeviceIoControl api。

问题:现在我需要识别USB设备中的存储设备。 在测试期间,我发现基于USB的CD / DVD也被逻辑检测为USB大容量存储设备。 我添加了检查设备类型。但我没有在SCSI中看到任何用于USB大容量存储的设备类型。

请建议我一个很好的解决方案来唯一识别USB大容量存储设备。

 bool IsUsbStorageDevice( wchar_t letter )
    {
        wchar_t volumeAccessPath[] = L"\\\\.\\X:";
        volumeAccessPath[4] = letter;

        HANDLE deviceHandle = CreateFileW(
            volumeAccessPath,
            0,                // no access to the drive
            FILE_SHARE_READ | // share mode
            FILE_SHARE_WRITE,
            NULL,             // default security attributes
            OPEN_EXISTING,    // disposition
            0,                // file attributes
            NULL);            // do not copy file attributes

        // setup query
        STORAGE_PROPERTY_QUERY query;
        memset(&query, 0, sizeof(query));
        query.PropertyId = StorageDeviceProperty;
        query.QueryType = PropertyStandardQuery;

        // issue query
        DWORD bytes;
        STORAGE_DEVICE_DESCRIPTOR devd;
        STORAGE_BUS_TYPE busType = BusTypeUnknown;
        bool usbcdrom = false;

        if (DeviceIoControl(deviceHandle,
            IOCTL_STORAGE_QUERY_PROPERTY,
            &query, sizeof(query),
            &devd, sizeof(devd),
            &bytes, NULL))
        {
            busType = devd.BusType;
            usbcdrom = devd.DeviceType == 0x005;
        }
        CloseHandle(deviceHandle);
        return (BusTypeUsb == busType) && !usbcdrom;
    }

2 个答案:

答案 0 :(得分:0)

你必须使用 的 L “\\\\。\\ PhysicalDriveN” 代替 的 L “\\\\ \\ X:”

您将N从0更改为29:

PhysicalDrive0

PhysicalDrive1

...

PhysicalDrive29

答案 1 :(得分:0)

GetDriveType(root)提供驱动器类型,可移动,固定,cdrom和其他一些:

wchar_t rootPath[] = L"X:\\";
rootPath[0] = letter;

DWORD DriveType = GetDriveType( rootPath );

switch ( DriveType ) {
    case DRIVE_CDROM:
        // CD/DVD/BR drive
        break;
    case DRIVE_REMOVABLE:
        // most flash drives, card readers
        break;
    case DRIVE_FIXED:
        // some flash drives, hard drives
        break;
    default:
        // never seen for USB drives
        break;
}