如何从Python中提取FAT16文件系统映像

时间:2017-01-20 09:18:35

标签: python fat fat16

我有一个FAT(16位)的图像,我想解析图像到文件,这样我就可以得到图像中的文件。

1 个答案:

答案 0 :(得分:1)

就在Python中读取FAT32文件系统映像而言,Wikipedia page具有编写只读实现所需的所有细节。

Construct可能有些用处。看起来他们有一个FAT16(https://github.com/construct/construct/blob/master/construct/examples/formats/filesystem/fat16.py)的例子,您可以尝试扩展它。