国产麻豆精品视频-国产麻豆精品免费视频-国产麻豆精品免费密入口-国产麻豆精品高清在线播放-国产麻豆精品hdvideoss-国产麻豆精品

始創于2000年 股票代碼:831685
咨詢熱線:0371-60135900 注冊有禮 登錄
  • 掛牌上市企業
  • 60秒人工響應
  • 99.99%連通率
  • 7*24h人工
  • 故障100倍補償
您的位置: 網站首頁 > 幫助中心>文章內容

windows的磁盤操作之一——基本概念 (1)

發布時間:  2012/9/11 19:38:46

  最近項目中需要在windows系統下與磁盤打交道,用了一個禮拜時間,弄懂了一些基本的概念,記錄于此,并以項目中的部分代碼作為范例。
  首先說明一點,本文中使用的不是cmd命令行,基于以下幾點原因:
  1.在C/C++中調用系統命令會存在處理的種種不方便,需要大量額外的代碼去分析命令執行結果。
  2.windows命令行遠不如linux的shell來的強大。
  3.效率。
  當然,如果不考慮編碼,僅作為系統下一種應用工具的話,DiskPart是既安全又便利的選擇。
  我們先來看幾個主要的使用頻繁的函數。
  在windows下與磁盤打交道最主要的API就是DeviceIoControl了,以下是從MSDN中直接拷貝出來的對該函數的說明。此函數確實太重要也太強大了,建議大家耐著性子先將它的說明看完,當然,本文后續例子中會大量用到此函數,可隨時返回此節參閱。
  DeviceIoControl Function
  Sends a control code directly to a specified device driver, causing the corresponding device to perform the corresponding operation.
  BOOL WINAPI DeviceIoControl(
  __in          HANDLE hDevice,
  __in          DWORD dwIoControlCode,
  __in          LPVOID lpInBuffer,
  __in          DWORD nInBufferSize,
  __out         LPVOID lpOutBuffer,
  __in          DWORD nOutBufferSize,
  __out         LPDWORD lpBytesReturned,
  __in          LPOVERLAPPED lpOverlapped
  );
  Parameters
  hDevice
  A handle to the device on which the operation is to be performed. The device is typically a volume, directory, file, or stream. To retrieve a device handle, use the CreateFile function. For more information, see Remarks.
  dwIoControlCode
  The control code for the operation. This value identifies the specific operation to be performed and the type of device on which to perform it.
  For a list of the control codes, see Remarks. The documentation for each control code provides usage details for the lpInBuffer, nInBufferSize, lpOutBuffer, and nOutBufferSize parameters.
  lpInBuffer
  A pointer to the input buffer that contains the data required to perform the operation. The format of this data depends on the value of the dwIoControlCode parameter.
  This parameter can be NULL if dwIoControlCode specifies an operation that does not require input data.
  nInBufferSize
  The size of the input buffer, in bytes.
  lpOutBuffer
  A pointer to the output buffer that is to receive the data returned by the operation. The format of this data depends on the value of the dwIoControlCode parameter.
  This parameter can be NULL if dwIoControlCode specifies an operation that does not return data.
  nOutBufferSize
  The size of the output buffer, in bytes.
  lpBytesReturned
  A pointer to a variable that receives the size of the data stored in the output buffer, in bytes.
  If the output buffer is too small to receive any data, the call fails, GetLastError returns ERROR_INSUFFICIENT_BUFFER, and lpBytesReturned is zero.
  If the output buffer is too small to hold all of the data but can hold some entries, some drivers will return as much data as fits. In this case, the call fails, GetLastError returns ERROR_MORE_DATA, and lpBytesReturned indicates the amount of data received. Your application should call DeviceIoControl again with the same operation, specifying a new starting point.
  If lpOverlapped is NULL, lpBytesReturned cannot be NULL. Even when an operation returns no output data and lpOutBuffer is NULL, DeviceIoControl makes use of lpBytesReturned. After such an operation, the value of lpBytesReturned is meaningless.
  If lpOverlapped is not NULL, lpBytesReturned can be NULL. If this parameter is not NULL and the operation returns data, lpBytesReturned is meaningless until the overlapped operation has completed. To retrieve the number of bytes returned, call GetOverlappedResult. If hDevice is associated with an I/O completion port, you can retrieve the number of bytes returned by calling GetQueuedCompletionStatus.
  lpOverlapped
  A pointer to an OVERLAPPED structure.
  If hDevice was opened without specifying FILE_FLAG_OVERLAPPED, lpOverlapped is ignored.
  If hDevice was opened with the FILE_FLAG_OVERLAPPED flag, the operation is performed as an overlapped (asynchronous) operation. In this case, lpOverlapped must point to a valid OVERLAPPED structure that contains a handle to an event object. Otherwise, the function fails in unpredictable ways.
  For overlapped operations, DeviceIoControl returns immediately, and the event object is signaled when the operation has been completed. Otherwise, the function does not return until the operation has been completed or an error occurs.
  Return Value
  If the operation completes successfully, the return value is nonzero.
  If the operation fails or is pending, the return value is zero. To get extended error information, call GetLastError.
  Remarks
  To retrieve a handle to the device, you must call the CreateFile function with either the name of a device or the name of the driver associated with a device. To specify a device name, use the following format:
  \\.\DeviceName
  DeviceIoControl can accept a handle to a specific device. For example, to open a handle to the logical drive A: with CreateFile, specify \\.\a:. Alternatively, you can use the names \\.\PhysicalDrive0, \\.\PhysicalDrive1, and so on, to open handles to the physical drives on a system.
  You should specify the FILE_SHARE_READ and FILE_SHARE_WRITE access flags when calling CreateFile to open a handle to a device driver. However, when you open a communications resource, such as a serial port, you must specify exclusive access. Use the other CreateFile parameters as follows when opening a device handle:
  ·         The fdwCreate parameter must specify OPEN_EXISTING.
  ·         The hTemplateFile parameter must be NULL.
  ·         The fdwAttrsAndFlags parameter can specify FILE_FLAG_OVERLAPPED to indicate that the returned handle can be used in overlapped (asynchronous) I/O operations.
  Requirements
  Client
  Requires Windows Vista, Windows XP, Windows 2000 Professional, or Windows NT Workstation.
  Server
  Requires Windows Server 2008, Windows Server 2003, Windows 2000 Server, or Windows NT Server.
  Header
  Declared in Winbase.h; include Windows.h.
  Library
  Use Kernel32.lib.
  DLL
  Requires Kernel32.dll.
  該函數實現對設備的訪問,包括獲取信息,發送命令,交換數據等。可以利用該接口函數向指定的設備驅動發送正確的控制碼及數據,分析它的響應,執行程序設計人員想要的功能。磁盤操作只是它強大功能中的一小部分。
  該函數最重要的兩個參數是hDevice和dwIoControlCode.
  控制碼dwIoControlCode決定了操作類型,與磁盤相關的控制碼有
  IOCTL_DISK_CREATE_DISK    利用CREATE_DISK結構中的信息對指定磁盤和磁盤分區進行初始化。
  IOCTL_DISK_DELETE_DRIVE_LAYOUT    從主引導記錄中刪除引導信息,所以磁盤將會被從頭到尾的格式化。扇區0中的分區信息也就不復存在了。
  IOCTL_DISK_FORMAT_TRACKS    格式化指定的、連續的軟盤磁道。如果需要更多的功能請使用IOCTL_DISK_FORMAT_TRACKS_EX。
  IOCTL_DISK_FORMAT_TRACKS_EX    格式化指定的、連續的軟盤磁道。
  IOCTL_DISK_GET_CACHE_INFORMATION    返回磁盤的高速緩存配置數據
  IOCTL_DISK_GET_DRIVE_GEOMETRY_EX    返回物理磁盤的擴展信息。包括:類型、柱面數量、每柱面磁道數、每磁道扇區數和每扇區字節數等。
  IOCTL_DISK_GET_DRIVE_LAYOUT_EX    返回各分區的擴展信息以及這些分區的特性。更多信息請參照DRIVE_LAYOUT_INFORMATION_EX結構。
  IOCTL_DISK_GET_LENGTH_INFO    返回指定磁盤/卷/分區的大小信息
  IOCTL_DISK_GET_PARTITION_INFO_EX    返回指定分區的擴展信息。包括:分區類型、大小和種類。更多信息請參照PARTITION_INFORMATION_EX結構。
  IOCTL_DISK_GROW_PARTITION    擴大指定分區。
  IOCTL_DISK_IS_WRITABLE    確定指定磁盤是否可寫。
  IOCTL_DISK_PERFORMANCE    啟用并獲取磁盤性能統計
  IOCTL_DISK_PERFORMANCE_OFF    關閉磁盤性能統計
  IOCTL_DISK_REASSIGN_BLOCKS    使磁盤設備影射一塊區域做為它的備用存儲塊公用池(spare block pool)。
  IOCTL_DISK_SET_CACHE_INFORMATION    設置磁盤的配置信息
  IOCTL_DISK_SET_DRIVE_LAYOUT_EX    根據給定的磁盤信息對磁盤進行分區。
  IOCTL_DISK_SET_PARTITION_INFO_EX    設置指定分區的分區信息。包括AT和EFI (Extensible Firmware Interface)分區的布局信息。
  IOCTL_DISK_UPDATE_PROPERTIES    使緩沖的分區表無效并重新獲取一份。
  IOCTL_DISK_VERIFY    對指定磁盤進行邏輯格式化
  另一個參數hDevice指向要操作的設備句柄,調用函數CreateFile獲得。CreateFile函數原型為
  HANDLE WINAPI CreateFile(
  __in          LPCTSTR lpFileName,
  __in          DWORD dwDesiredAccess,
  __in          DWORD dwShareMode,
  __in          LPSECURITY_ATTRIBUTES lpSecurityAttributes,
  __in          DWORD dwCreationDisposition,
  __in      

億恩科技地址(ADD):鄭州市黃河路129號天一大廈608室 郵編(ZIP):450008 傳真(FAX):0371-60123888
   聯系:億恩小凡
   QQ:89317007
   電話:0371-63322206


本文出自:億恩科技【www.artduck.net】

服務器租用/服務器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質保障!--億恩科技[ENKJ.COM]

  • 您可能在找
  • 億恩北京公司:
  • 經營性ICP/ISP證:京B2-20150015
  • 億恩鄭州公司:
  • 經營性ICP/ISP/IDC證:豫B1.B2-20060070
  • 億恩南昌公司:
  • 經營性ICP/ISP證:贛B2-20080012
  • 服務器/云主機 24小時售后服務電話:0371-60135900
  • 虛擬主機/智能建站 24小時售后服務電話:0371-60135900
  • 專注服務器托管17年
    掃掃關注-微信公眾號
    0371-60135900
    Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權所有  地址:鄭州市高新區翠竹街1號總部企業基地億恩大廈  法律顧問:河南亞太人律師事務所郝建鋒、杜慧月律師   京公網安備41019702002023號
      0
     
     
     
     

    0371-60135900
    7*24小時客服服務熱線

     
     
    日韩一级黄色片| 色综合久久久久综合体桃花网| 韩国毛片免费| 欧美激情一区二区三区在线| 亚洲天堂在线播放| 超级乱淫黄漫画免费| 欧美电影免费看大全| 日本在线不卡免费视频一区| 麻豆污视频| 日韩一级精品视频在线观看| 日本特黄特黄aaaaa大片| 色综合久久天天综合| 可以免费看毛片的网站| 国产亚洲男人的天堂在线观看| 成人a级高清视频在线观看| 精品国产一区二区三区久久久蜜臀| 精品视频免费在线| 欧美激情一区二区三区视频| 欧美大片aaaa一级毛片| 国产一区精品| 中文字幕一区二区三区 精品| 国产伦精品一区二区三区在线观看| 免费毛片播放| 可以在线看黄的网站| 精品视频在线观看一区二区三区| 黄色短视频网站| 久久99中文字幕| 91麻豆国产级在线| 欧美夜夜骑 青草视频在线观看完整版 久久精品99无色码中文字幕 欧美日韩一区二区在线观看视频 欧美中文字幕在线视频 www.99精品 香蕉视频久久 | 国产伦理精品| 国产精品自拍亚洲| 天天色成人| 午夜在线亚洲| 国产一区二区精品久久| 美国一区二区三区| 欧美国产日韩精品| 日韩中文字幕在线亚洲一区 | 久久精品店| 精品视频在线观看免费| 毛片成人永久免费视频| 精品久久久久久中文字幕一区 | 精品国产亚一区二区三区| 青青青草影院| 精品视频一区二区三区免费| 毛片成人永久免费视频| 日韩专区第一页| 欧美激情一区二区三区中文字幕| 亚洲天堂免费观看| 日本伦理片网站| 国产91丝袜高跟系列| 九九精品久久| 国产一区二区高清视频| 黄色短视频网站| 久久国产一久久高清| 日韩在线观看视频黄| 日韩专区亚洲综合久久| 91麻豆tv| 精品久久久久久免费影院| 国产一级生活片| 美女免费毛片| 九九精品久久| 精品国产一区二区三区国产馆| 日韩欧美一二三区| 久久国产精品只做精品| 国产美女在线观看| 国产成人女人在线视频观看 | 日本特黄特色aa大片免费| 毛片高清| 久久福利影视| 香蕉视频久久| 欧美a免费| 国产极品白嫩美女在线观看看| 韩国三级视频在线观看| 欧美激情在线精品video| 99久久精品国产麻豆| 精品国产香蕉在线播出| 久久久久久久久综合影视网| 久久99欧美| 一级女性大黄生活片免费| 国产不卡在线看| 精品国产一区二区三区国产馆| 精品视频在线观看免费| 欧美大片一区| 亚洲第一页乱| 久久99欧美| 国产欧美精品午夜在线播放| 日日日夜夜操| 成人高清免费| 精品视频在线看| 青青久在线视频| 久久久成人网| 可以在线看黄的网站| 黄视频网站免费看| 精品视频在线观看一区二区| a级精品九九九大片免费看| 国产成人精品综合| 九九精品影院| 国产高清在线精品一区二区| 日日夜夜婷婷| 久久成人亚洲| 国产视频久久久| 久久久成人网| 精品视频在线观看免费| 色综合久久天天综合| 亚洲第一页乱| 精品视频在线看| 国产一区二区精品久久91| 亚洲精品中文一区不卡| 国产麻豆精品视频| 欧美激情一区二区三区在线 | 成人影院久久久久久影院| 中文字幕一区二区三区 精品| 精品国产一区二区三区国产馆| 99热精品一区| 精品视频在线看| 精品国产一区二区三区国产馆| 久久国产精品只做精品| 91麻豆精品国产片在线观看| 91麻豆精品国产高清在线| 欧美另类videosbestsex高清| 成人a级高清视频在线观看| 久久99这里只有精品国产| 国产麻豆精品| 天堂网中文字幕| 青青久久网| 精品在线视频播放| 天天色色色| 日韩在线观看网站| 青草国产在线| 日本久久久久久久 97久久精品一区二区三区 狠狠色噜噜狠狠狠狠97 日日干综合 五月天婷婷在线观看高清 九色福利视频 | 可以免费在线看黄的网站| 美女免费精品高清毛片在线视 | 国产91丝袜高跟系列| 成人免费观看的视频黄页| 日本免费看视频| 四虎影视久久久| 亚洲第一色在线| 91麻豆精品国产片在线观看| 好男人天堂网 久久精品国产这里是免费 国产精品成人一区二区 男人天堂网2021 男人的天堂在线观看 丁香六月综合激情 | 美女免费毛片| 麻豆网站在线看| 亚洲 男人 天堂| 国产国语对白一级毛片| 日韩综合| 日本在线播放一区| 精品视频在线观看免费| 免费国产在线视频| 国产成人女人在线视频观看 | 日韩专区第一页| 国产国语在线播放视频| 久久成人亚洲| 久久国产一区二区| 国产不卡福利| 青草国产在线| 成人a大片在线观看| 高清一级做a爱过程不卡视频| 日韩在线观看视频黄| 999精品在线| 国产国语对白一级毛片| 日韩免费在线视频| 日韩在线观看网站| 欧美一区二区三区在线观看| 国产一区二区精品久久91| 国产亚洲男人的天堂在线观看| 国产不卡在线看| 午夜欧美福利| 久久久久久久久综合影视网| 久久99欧美| 国产一区二区精品久久| 国产综合成人观看在线| 久草免费在线观看| 台湾毛片| 黄视频网站免费看| 天天做人人爱夜夜爽2020 | 国产伦精品一区三区视频| 91麻豆精品国产自产在线观看一区| 欧美另类videosbestsex久久| 欧美激情伊人| 美女免费精品视频在线观看| 精品视频一区二区三区| 国产综合成人观看在线| 国产高清在线精品一区a| 韩国毛片免费| 国产国语对白一级毛片| 亚洲天堂免费| 国产不卡在线播放| 99久久网站| 亚洲精品久久玖玖玖玖| 日韩免费在线视频| 久久国产精品自由自在| 国产91丝袜高跟系列| 91麻豆精品国产片在线观看| 精品国产一区二区三区国产馆| 黄色短视频网站| 亚洲爆爽| 国产91精品一区二区| 午夜激情视频在线播放| 美国一区二区三区| 国产网站在线| 日本久久久久久久 97久久精品一区二区三区 狠狠色噜噜狠狠狠狠97 日日干综合 五月天婷婷在线观看高清 九色福利视频 |