以编程方式访问 Windows 文件分配表

发布于 2024-07-26 14:56:41 字数 232 浏览 7 评论 0原文

如何以编程方式访问 Windows 中的文件分配条目 (FAT)? 我读过提到读取硬盘中特定地址的条目的文章,但是如何从硬盘读取这些条目。 我可以尝试使用 C、C++、C# 或 VB。

http://www.ntfs.com 上的教程有助于理解 FAT 上的内容,但是没有阐明如何以编程方式执行此操作。

How can I programmatically access the file allocation entries (FAT) in Windows? I have read the articles which mention reading entries at a particular address in the harddisk, but how can I read those entries from the harddisk. I can try in C, C++, C# or VB.

The tutorials on http://www.ntfs.com were helpful in understanding what to read on the FAT, but didn't clarify how to do so programmatically.

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

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

发布评论

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

评论(1

兮子 2024-08-02 14:56:41

您可以使用文件 I/O 函数打开硬盘本身,例如 CreateFileReadFile 。 您可以使用 CreateFile 打开磁盘,使用 SetFilePointer,然后使用ReadFile读取。

有关直接从磁盘读取数据的更多详细信息,请参阅此知识库文章

You can open the hard drive itself with the file I/O functions like CreateFile and ReadFile. You can open the disk using CreateFile, seek to the appropriate sector using SetFilePointer, and then read using ReadFile.

See this KB article for more details about reading data directly from the disk.

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