Android 获取所有可用存储设备
是否有任何功能/方法可以通过名称检测手机的各种不同存储空间。我的意思是检测所有内部/外部存储(如果您的设备上有多个可用存储)。如何检测是否有可用的SD卡?
提前致谢!
Is there any function/method which allow to detect all kind of different storage to your phone with their names. I mean to detect all internal/external storage if there is more than one available on your device. And how to detect if there is available SD Card or not?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道其他类型的存储设备,我只知道Android的内部存储和外部存储设备。
现在,要检查可用的外部存储,例如
,对于内部存储,(内部存储始终保持(存在),因此无需检查它)就像,
现在,在这两种情况下检查可用内存和使用内存,
I don't know about other types of storage device, I only know Internal Storage and External Storage device for android.
Now for check available external storage something like,
And for Internal storage, (Internal storage is always remain (present) so no need to check it) just get like,
Now, in both case to check available free memory and usage memory,
试试这个..
Try this one..