使用 Windows 原始访问 API 直接访问 USB 驱动器

发布于 2024-11-09 12:03:53 字数 161 浏览 0 评论 0原文

在USB物理驱动器的末尾,我想使用Windows原始访问API直接写入数据。我不想使用内核驱动程序来做到这一点。

据我所知,出于安全原因,Windows XP SP2 或 SP3(?) 阻止了 HDD 直接访问。我不确定 USB 驱动器是否如此。

请指导我如何到达那里。多谢。

At the end of USB physical drive, I want to write data directly using windows raw access API. I don't want to use kernel driver to do that.

As far as I know, HDD direct access is blocked from windows xp sp2 or sp3(?) for security reason. I'm not sure this is true for USB drive.

Please guide me how to get there. Thanks a lot.

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

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

发布评论

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

评论(2

浮萍、无处依 2024-11-16 12:03:53

这取决于你想有多“直接”。

在大多数情况下,类似的东西

HANDLE hDrive = CreateFile("\\\\.\\F:", ...);
ReadFile(hDrive, ...);

应该可以满足您的需求,尽管您可能需要 DeviceIoControl

如果您正在做一些非常高级的事情。

PS:正如其他人提到的,这应该在 StackOverflow 上。

It depends on how "direct" you want to be.

Something like

HANDLE hDrive = CreateFile("\\\\.\\F:", ...);
ReadFile(hDrive, ...);

should get you what you need in most situations, although you might need DeviceIoControl with

if you're doing something really advanced.

P.S.: This should be on StackOverflow, as other people have mentioned.

就是爱搞怪 2024-11-16 12:03:53

投票决定迁移到 Stack Overflow。我认为无论如何,使用通过 USB 连接的外部硬盘不会改变任何东西,因为它仍然显示为 Windows 的普通磁盘。

当您说“原始访问 API”时,您是指列出的 CreateFile、WriteFile 等函数 这里?因为这些函数应该能够从普通的 Win32 应用程序中调用。或者您想要直接访问磁盘本身,而不需要中间的文件系统层? (部分用户应用如HxD可以直接打开磁盘进行读取/写作-谨慎使用)

Voted to move to Stack Overflow. I think regardless, using an external HDD connected by USB won't change anything, as it still appears as a normal disk to windows.

When you say "raw access API", do you mean functions like CreateFile, WriteFile etc as listed here? Because those functions should be able to be called from normal Win32 apps. Or do you want direct access to the disk itself, with no filesystem layer in between? (Some user apps such as HxD can directly open disks for reading/writing - use with caution)

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