如何在 Linux 中查找软盘\ CD 扇区大小?
如何通过 C++ 代码获取 Linux 中软盘和 CD 磁盘的扇区大小?
谢谢大家。
How can I get the sector size for floppy and CD disks in Linux, via C++ code?
Thank you all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
"#include"
并使用ioctl HDIO_GET_IDENTITY
获取struct hd_driveid
。在此结构中,
x->sector_bytes
字段是扇区大小。"#include <hdreg.h>"
and useioctl HDIO_GET_IDENTITY
to obtain astruct hd_driveid
.On this structure, the
x->sector_bytes
field is the sector size.