程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++ 通過WIN32 API 獲取邏輯磁盤詳細信息

C++ 通過WIN32 API 獲取邏輯磁盤詳細信息

編輯:C++入門知識

眾所周知,在微軟的操作系統下編寫應用程序,最主要的還是通過windows所提供的api函數來實現各種操作的,這些函數通常是可以直接使用的,只要包含windows.h這個頭文件, 下載源文件

今天我們主要介紹的是幾個常用的api函數,通過它我們可以獲取用戶磁盤的相關信息。

 

其主要函數原型說明如下:

 

1.獲取系統中邏輯驅動器的數量

The GetLogicalDrives function retrieves a bitmask representing the currently available disk drives.

DWORD GetLogicalDrives(void);

 

2.獲取所有驅動器字符串信息

The GetLogicalDriveStrings function fills a buffer with strings that specify valid drives in the system.

DWORD GetLogicalDriveStrings(

  DWORD nBufferLength,

  LPTSTR lpBuffer

);

 

3.獲取驅動器類型

The GetDriveType function determines whether a disk drive is a removable, fixed, CD-ROM, RAM disk, or network drive.

UINT GetDriveType(

  LPCTSTR lpRootPathName

);

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved