如下代码所示:
bool APN::Utils::isTFCardMount() { struct statfs disk; int64_t total = 0; if(statfs(“/mnt/mmcblk0p1”, &disk) !=0) return false; total = (int64_t)disk.f_blocks * disk.f_bsize; if(total > 512*1024*1024) return true; return false; }根据返回值,判断设备是否挂载成功,设备大小是否可判断
免责声明:文章内容来自互联网,本站不对其真实性负责,也不承担任何法律责任,如有侵权等情况,请与本站联系删除。
转载请注明出处:通过检测挂载文件的大小,判断设备是否挂载成功 https://www.yhzz.com.cn/a/14611.html