Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想编写一个程序,可以通过读取设备文件(例如,名为 fat32.disk 的设备文件)打印出 FAT32 文件系统的信息,例如每个簇的扇区数。我如何在 C 中做到这一点?我应该使用读取文件fopen("fat32.disk","r")吗?那么如何定位到 fat32.disk 中 Volume ID 上存储的信息呢?像sectors_per_cluster = 0x0D我的脚本中的东西?
fopen("fat32.disk","r")
sectors_per_cluster = 0x0D