以编程方式访问 Windows 文件分配表
如何以编程方式访问 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用文件 I/O 函数打开硬盘本身,例如 CreateFile 和 ReadFile 。 您可以使用 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.