SD卡工具类

Android的manifest.xml文档中声名权限:

  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>

 判断SDcard是否可以用

public static boolean isSdCardExists() {
        if (android.os.Environment.getExternalStorageState().equals(
                android.os.Environment.MEDIA_MOUNTED)) {
            return true;
        } else {
            Log.e(" ", "the Sdcard is not exists");
            return false;
        }
    }

 获取SD卡总大小

public static String getSdCardTotalSize() {
        if (!isSdCardExists())
            return "";
        File path = Environment.getExternalStorageDirectory();
        StatFs stat = new StatFs(path.getPath());
        long blockSize = stat.getBlockSize();
        long availableBlocks = stat.getBlockCount();
        return String.valueOf((availableBlocks * blockSize) / 1024 / 1024);
    }

获取SD卡可用大小

 public static String getSdcardAvailbleSize() {
        if (!isSdCardExists())
            return "";
        File path = Environment.getExternalStorageDirectory();
        StatFs stat = new StatFs(path.getPath());
        long blockSize = stat.getBlockSize();
        long availableBlocks = stat.getAvailableBlocks();
        return String.valueOf((availableBlocks * blockSize) / 1024 / 1024);
    }

 获取根目录路径

 public static String getRootPath() {
        if (!isSdCardExists())
            return "";
        return Environment.getExternalStorageDirectory().getPath();
    }

获取根目录文件列表

 public static File[] getRootFiles() {
        if (getRootPath().equals(""))
            return null;
        List<File> files = new ArrayList<File>();
        File file = new File(getRootPath());
        return file.listRoots();
    }



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值