跳至主要內容

读取到SD卡的剩余空间


Android开发基础之读取到SD卡的剩余空间

u41243677813382181585fm27gp0.jpg
u41243677813382181585fm27gp0.jpg

代码就这些:

File exFile = Environment.getExternalStorageDirectory();
            Log.d(TAG, "Ext-FilePath == " + exFile);
            long freeSpace = exFile.getFreeSpace();
            //把long转成我们直观的空间大小,比如说:多少M,多少KB,多少GB。
            String sizeText = Formatter.formatFileSize(this, freeSpace);
            Log.d(TAG, "free size == " + sizeText);

简单吧,直接看下载地址吧!欢迎转载内容哦!!嘻嘻!

在线视频地址:

https://www.sunofbeach.net/c/1443881236287311874