如何查看C盘挂载的U盘大小?
我有一个闪存驱动器设备 (/dev/sda1) 安装到嵌入式 Linux 系统(内核 2.6.23)上的 /mnt。如何使用 C 计算出驱动器的大小?
I have a flash drive device (/dev/sda1) mounted to /mnt on an embedded linux system (kernel 2.6.23). Using C how do I work out the size of the drive?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Linux 上,如果您不担心可移植性(C 不了解驱动器,因此任何此类特定代码都将不可移植),请使用
statfs()
:On Linux, if you're not worried about portability (C doesn't know about drives, so any such specific code will be unportable), use
statfs()
:读取并解析设备的 sysfs 条目中的数字。在您的情况下,
/sys/block/sda/size
/sys/block/sda/sda1/size
code>设备尚未安装。
Read and parse a number in device's sysfs entry. In your case,
/sys/block/sda/size
/sys/block/sda/sda1/size
The device does not have to be mounted yet.
如果使用外部工具没有问题,请执行以下命令:
df -h | grep -i /dev/sda1
使用 popen,并使用 strtok 解析结果行。
If you have no problem using external tools, exec this :
df -h | grep -i /dev/sda1
using popen, and parse the resulting line with strtok.