gpt4 book ai didi

c++ windows 将 GetLogicalDrives 的结果传递给 GetVolumeInformation

转载 作者:可可西里 更新时间:2023-11-01 11:16:17 25 4
gpt4 key购买 nike

你好,

我使用 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++ windows 将 GetLogicalDrives 的结果传递给 GetVolumeInformation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42322387/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com