5

我正在尝试使用以下代码从以下位置获取MBRPhysicalDrive0

private static byte[] ReadMbr(string lpFileName)
{
   byte[] mbr = new byte[512];

   using (SafeFileHandle drive = CreateFile(
         lpFileName: lpFileName,
         dwDesiredAccess: (uint) EFileAccess.GenericRead, //DO NOT MODIFY THE MBR!!!
         dwShareMode: (uint)EFileShare.Write | (uint)EFileShare.Read | (uint)EFileShare.Delete,
         SecurityAttributes: IntPtr.Zero,
         dwCreationDisposition: (uint) ECreationDisposition.OpenAlways,
         dwFlagsAndAttributes: (uint)EFileAttributes.System,
         hTemplateFile: IntPtr.Zero))
   {
      if (drive.IsInvalid)
         throw new IOException("Unable to access drive. Win32 Error Code " + Marshal.GetLastWin32Error());

      //Get the 1st 512 bytes of the volume (MBR)
      using (FileStream stream = new FileStream(drive, FileAccess.Read))
      {
         stream.Read(mbr, 0, 512);
      }
   }

   return mbr;
}

我试过通过

  • \\.\PhysicalDisk0
  • \\.\PhysicalDrive0
  • \\.\PhysicalDisk0:
  • \\.\PhysicalDrive0

他们都没有工作。我以管理员身份运行它。我也可以\\.\C:毫无问题地开始工作并显示 VBR。

作为记录:

-我正在运行 Windows Server 2008 R2。

参考

4

1 回答 1

10

CreateFile()文档中:

要使此类调用成功,必须满足以下要求:

  • 调用者必须具有管理权限。有关详细信息,请参阅以特殊权限运行
  • dwCreationDisposition参数必须 有OPEN_EXISTING标志
  • 打开卷或软盘时,该dwShareMode参数必须具有FILE_SHARE_WRITE标志。

您可能想尝试传入ECreationDisposition.OpenExisting.dwCreationDisposition

于 2010-11-26T21:16:57.373 回答