zoukankan      html  css  js  c++  java
  • 使用GetLogicalDriveStrings获取驱动器根路径

    使用GetLogicalDriveStrings获取驱动器根路径,并使用自定义的GetDriveInfo函数获取驱动器的属性。

    VS2012 + win7 x64下调试通过。

    #include <Windows.h>
    #include <stdio.h>
    #include <stdlib.h>
    #define BUFSIZE 1024
    BOOL GetDriverInfo(LPSTR szDrive);
    //int WinMain(HINSTANCE hInstance,HINSTANCE hPreInstance,LPSTR lpCmdLine,int nCmdShow)
    int main(void)
    {
        CHAR szLogicDriveStrings[BUFSIZE];
        PCHAR szDrive;
    
        ZeroMemory(szLogicDriveStrings,BUFSIZE);
    
        GetLogicalDriveStrings(BUFSIZE-1,szLogicDriveStrings);
        szDrive = (PCHAR)szLogicDriveStrings;
    
        do 
        {
            if(!GetDriverInfo(szDrive))
            {
                printf("
    Get Volume Information Error:%d",GetLastError());
    
            }
            szDrive += (lstrlen(szDrive)+1);
        } while (*szDrive !='x00');
    
       system("PAUSE");
        return 0;
    
    }
    
    
    BOOL GetDriverInfo(LPSTR szDrive)
    {
        UINT uDriverType;
        DWORD dwVolumeSerialNumber;
        DWORD dwMaximumComponentlength;
        DWORD dwFileSystemFlags;
        CHAR szFileSystemNameBuffer[BUFSIZE];
        CHAR szDriveName[MAX_PATH];
    
        printf("
    %s
    ",szDrive);
        uDriverType = GetDriveType(szDrive);
    
        switch(uDriverType)
        {
        case DRIVE_UNKNOWN:
            printf("The driver type cannot be determined!");
            break;
        case DRIVE_NO_ROOT_DIR:
            printf("The root path is invalid,for example,no volume is mounted at the path");
            break;
        case DRIVE_REMOVABLE:
            printf("The drive is a type that has removable media,for example:a floppy drive or removable hard disk");
            break;
        case DRIVE_FIXED:
            printf("The drive is a type that cannot be removed, for example,a fixed hard drive");
            break;
        case DRIVE_REMOTE:
            printf("This drive is a remote(network) drive");
            break;
        case DRIVE_CDROM:
            printf("This drive is a CD-ROM drive.");
            break;
        case DRIVE_RAMDISK:
            printf("This drive is a RAM disk");
            break;
        default:
            break;
        }
    
        if (!(GetVolumeInformation(
            szDrive,
            szDriveName,
            MAX_PATH,
            &dwVolumeSerialNumber,
            &dwMaximumComponentlength,
            &dwFileSystemFlags,
            szFileSystemNameBuffer,
            BUFSIZE)))
        {
            return FALSE;
    
        }
    
        if (0!=lstrlen(szDriveName))
        {
            printf("
    Drive Name is %s.
    ",szDriveName);
        }
    
        printf("
    Volume Serial is %u.",dwVolumeSerialNumber );
        printf("
    Maximum Component Length is %u.",dwMaximumComponentlength);
        printf("
    System Type is %s.
    ",szFileSystemNameBuffer);
        
        if (dwFileSystemFlags & FILE_VOLUME_QUOTAS)
        {
    
            printf("The file system supports disk Quotas.
    ");
        }
    
        if (dwFileSystemFlags & FILE_SUPPORTS_REPARSE_POINTS)
        {
            printf("The file system does not support volume mount points.
    ");
    
        }
    
        if (dwFileSystemFlags & FILE_CASE_SENSITIVE_SEARCH)
        {
            printf("The file system supports case-sentitive file name.
    ");
        }
    
        printf("...
    ");
    
        return TRUE;
    
    }
  • 相关阅读:
    第一部分:开发前的准备-第二章 基础入门
    多线程笔记
    .net平台下垃圾回收机制
    xml基本操作和保存配置文件应用实例
    .net平台下C#socket通信(中)
    .net平台下C#socket通信(上)
    泛型
    面向过程和面向对象及面向对象的三大特征
    值类型和引用类型及参数传递
    js中typeof与instanceof区别
  • 原文地址:https://www.cnblogs.com/dabiao/p/3576697.html
Copyright © 2011-2022 走看看