磁碟和驅動管理(1)

2021-06-03 10:43:39 字數 1040 閱讀 4995

磁碟和驅動管理(1)

基本函式:

(1) getlogicaldrives( void )

(2) dword getlogicaldrivestring( dword nbufferlength, lptstr lpbuffer );

(3) handle findfirstvolume( lptstr lpszvolumename, dword ccbufferlength );

(4) bool findnextvolume( handle hfindvolume, lptstr lpszvolumename, dword cchbufferlength );

(5) bool winapi findvolumeclose( handle hfindvolume );

(6) uint getdrivetype( lpctstr lprootpathname );

(7) bool getvolumeinformation(

lpctstr lprootpathname,

lptstr lpvolumenamebuffer,

dword nvolumenamesize,

lpdword lpvolumeserialnumber,

lpdword lpmaximumcomponentlength,

lpdword lpfilesystemflags,

lptstr lpfilesystemnamebuffer,

dword nfilesystemnamesize

);附加:

#include

#pragma comment( lib, "user32.lib" )

int winmain( hinstance hinstance, hinstance hprevinstance, lpstr lpcmdline, int ncmdshow )

messagebox函式原型:

int messagebox( hwnd hwnd, lpctstr lptext, lpctstr lpcaption, uint utype );

1 磁碟管理

分割槽表 建立掛載目錄 mkdir data0 檢視已掛載磁碟檔案系統型別 df ht 檢視磁碟資訊 fdisk l 對磁碟進行分割槽 fdisk dev vdb 格式化檔案系統 mount t 型別 o 掛接方式 源路徑 目標路徑 t 詳細選項 光碟或光碟映象 iso9660 dos fat16檔...

磁碟管理和磁碟加密

檢視磁碟資訊 fdisk l 硬碟分割槽表 一 mbr 老 需要占用硬碟的前512個位元組被占用,446個位元組存放主導道資訊,放分64個位元組存區 2個位元組存放結尾資訊,只能有4個主分割槽 sda1 sda4 有乙個特殊分割槽,叫做拓展分割槽,拓展分割槽不能建立檔案系統,就是不能格式化,也就不能...

磁碟管理和磁碟陣列

磁碟陣列的意思就是容錯式磁碟陣列,raid技術可以通過軟體或硬體實現,將多個磁碟整合成為乙個較大的磁碟裝置,該裝置不僅有儲存功能,還有資料保護的功能。raid具有多個不同的等級 level 每個level對整合後的磁碟實現不同的功能。1 raid0 兩塊盤同時存放資料 例如 有disk0和disk1...