如何获取Android SD卡上的可用空间?
我正在使用 Environment.getExternalStorageDirectory() 创建文件,在创建和存储文件之前我需要知道是否有足够的可用空间。
如果您可以引用 Android Ref 文档,那也会很有帮助。
I am using Environment.getExternalStorageDirectory() to create a file and I will need to know if there is enough space available before I create and store the file.
If you can cite the Android Ref doc, that would be helpful too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您必须使用 StatFs 类。以下是如何使用它的示例,该示例取自手机上“设置”应用程序的源代码。
You have to use the StatFs Class. Here is an example of how to use it taken from the source code to the Settings application found on the phone.
使用
StatFS
。如果您将Environment.getExternalStorageDirectory()
中的值传递给构造函数(当然,转换为String
),它应该可以工作。Use
StatFS
. It should work if you pass in the value fromEnvironment.getExternalStorageDirectory()
to the constructor (converting toString
, of course).您可能需要重新设置才能获得准确的结果:
You may have to restat to get accurate results:
自 API 级别 9 起可用:
http://developer.android .com/reference/java/io/File.html#getUsableSpace()
Usable since API level 9:
http://developer.android.com/reference/java/io/File.html#getUsableSpace()