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 手册,现在我想编写一个程序来浏览设备。如何读取设备的特定扇区,我不想将整个设备作为文件加载到内存中,请建议一些系统调用来开始。
在 中找到块设备/dev/,那么你的系统调用是open,lseek和read. 更高级别的东西,如fopen,fseek和fread也可以。一切都是一个文件。
/dev/
open
lseek
read
fopen
fseek
fread