如何借助 P/Invoke 创建文件来读取引导扇区并显示 .MBR?

发布于 2024-07-11 09:37:38 字数 107 浏览 7 评论 0原文

我浏览过 CreateFile 文档...仍然想知道如何使用 P/Invoke 调用 CreateFile 并读取引导扇区,以显示 .MBR?

这部分有参考代码吗? 先感谢您!

I've browsed through the CreateFile documentation... still wondering how should I use P/Invoke to call CreateFile and to read the boot sector, to display out the .MBR?

Any reference code for this portion? Thank you in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泪是无色的血 2024-07-18 09:37:38

要扩展 Baget 的答案,您可以像这样调用 CreateFile

hFile = CreateFile("\\\\.\\physicaldrive0", 
    GENERIC_READ | FILE_SHARE_READ,
    0,
    OPEN_EXISTING,
    0,
    0);

To expand on Baget's answer, you can call CreateFile like this:

hFile = CreateFile("\\\\.\\physicaldrive0", 
    GENERIC_READ | FILE_SHARE_READ,
    0,
    OPEN_EXISTING,
    0,
    0);
一抹淡然 2024-07-18 09:37:38

也许这个问题会对您有所帮助

基本上您需要在文件名 "\\.\PHYSICALDRIVE0"

Maybe this question will help you

Basically you need to access a device using this syntax in the filename "\\.\PHYSICALDRIVE0"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文