喂,
我使用GetLogicalDrives获取所有驱动器,我想进一步使用它来检测驱动器类型,然后使用GetVolumeInformation检查特定驱动器的状态。但是,我无法使用GetVolumeInformation和GetDriveTypes中的GetLogicalDrives(DWORD)结果,因为它们期望LPCWSTR。如何转换GetLogicalDrives的结果并将其传递给GetVolumeInformation和GetDriveTypes?
TCHAR myDrives[] = L" A";
DWORD myDrivesBitMask = GetLogicalDrives();
WCHAR szTest[10];
if (myDrivesBitMask == 0)
wprintf(L"GetLogicalDrives() failed with error code: %d\n", GetLastError());
else {
wprintf(L"This machine has the following logical drives:\n");
while (myDrivesBitMask) {
// Use the bitwise AND with 1 to identify
// whether there is a drive present or not.
if (myDrivesBitMask & 1) {
// Printing out the available drives
wprintf(L"drive %s\n", myDrives);
}
// increment counter for the next available drive.
myDrives[1]++;
// shift the bitmask binary right
myDrivesBitMask >>= 1;
}
wprintf(L"\n");
}
UINT test;
for (i = 0; i<12; i++)
{
test = GetDriveType(myDrives[i]);
switch (test)
{
case 0: printf("Drive %S is type %d - Cannot be determined.\n", myDrives[i], test);
break;
case 1: printf("Drive %S is type %d - Invalid root path/Not available.\n", myDrives[i], test);
break;
case 2: printf("Drive %S is type %d - Removable.\n", myDrives[i], test);
break;
case 3: printf("Drive %S is type %d - Fixed.\n", myDrives[i], test);
break;
case 4: printf("Drive %S is type %d - Network.\n", myDrives[i], test);
break;
case 5: printf("Drive %S is type %d - CD-ROM.\n", myDrives[i], test);
break;
case 6: printf("Drive %S is type %d - RAMDISK.\n", myDrives[i], test);
break;
default: "Unknown value!\n";
}
}
(GetVolumeInformation(myDrives, volumeName, ARRAYSIZE(volumeName), &serialNumber, &maxComponentLen, &fileSystemFlags, fileSystemName, ARRAYSIZE(fileSystemName)))
{
_tprintf(_T("There is a CD/DVD in the CD/DVD rom"));
_tprintf(_T("Volume Name: %s\n"), volumeName);
_tprintf(_T("Serial Number: %lu\n"), serialNumber);
_tprintf(_T("File System Name: %s\n"), fileSystemName);
_tprintf(_T("Max Component Length: %lu\n"), maxComponentLen);
}
else
_tprintf(_T("There is NO CD/DVD in the CD/DVD rom"));
最佳答案
由于您需要驱动器号来调用GetDriveType()
和GetVolumeInformation()
,因此使用GetLogicalDriveStrings()
代替GetLogicalDrives()
会更容易,例如:
WCHAR myDrives[105];
WCHAR volumeName[MAX_PATH];
WCHAR fileSystemName[MAX_PATH];
DWORD serialNumber, maxComponentLen, fileSystemFlags;
UINT driveType;
if (!GetLogicalDriveStringsW(ARRAYSIZE(myDrives)-1, myDrives))
{
wprintf(L"GetLogicalDrives() failed with error code: %lu\n", GetLastError());
}
else
{
wprintf(L"This machine has the following logical drives:\n");
for (LPWSTR drive = myDrives; *drive != 0; drive += 4)
{
driveType = GetDriveTypeW(drive);
wprintf(L"Drive %s is type %d - ", drive, driveType);
switch (driveType)
{
case DRIVE_UNKNOWN:
wprintf(L"Cannot be determined!");
break;
case DRIVE_NO_ROOT_DIR:
wprintf(L"Invalid root path/Not available.");
break;
case DRIVE_REMOVABLE:
wprintf(L"Removable.");
break;
case DRIVE_FIXED:
wprintf(L"Fixed.");
break;
case DRIVE_REMOTE:
wprintf(L"Network.");
break;
case DRIVE_CDROM:
wprintf(L"CD-ROM.");
break;
case DRIVE_RAMDISK:
wprintf(L"RAMDISK.");
break;
default:
wprintf(L"Unknown value!");
}
wprintf(L"\n");
if (driveType == DRIVE_CDROM)
{
if (GetVolumeInformationW(drive, volumeName, ARRAYSIZE(volumeName), &serialNumber, &maxComponentLen, &fileSystemFlags, fileSystemName, ARRAYSIZE(fileSystemName)))
{
wprintf(L" There is a CD/DVD in the drive:\n");
wprintf(L" Volume Name: %s\n", volumeName);
wprintf(L" Serial Number: %08X\n", serialNumber);
wprintf(L" File System Name: %s\n", fileSystemName);
wprintf(L" Max Component Length: %lu\n", maxComponentLen);
}
else
{
wprintf(L" There is NO CD/DVD in the drive");
}
}
}
}
关于c++ - C++ Windows将结果从GetLogicalDrives传递到GetVolumeInformation,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42322387/