How to get an External storage sd card size (With Mounted SD card)?

后端 未结 4 1767
再見小時候
再見小時候 2020-12-05 08:33

Link :I worked on based on this Link

I added this line to find the size (both Internal and External) size,

return availableExternalMemorySize/(1024*1         


        
4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-05 09:23

     Use the
    following code
    it may
    help
    
    public void getInternalmemorySize() {
        StatFs stat_fs = new StatFs(Environment.getExternalStorageDirectory().getPath());
        double avail_sd_space = (double) stat_fs.getAvailableBlocksLong() * (double) stat_fs.getBlockSizeLong();
        double GB_Available = (avail_sd_space / 1073741824);
        double GBTotal = ((double) stat_fs.getBlockCountLong() * (double) stat_fs.getBlockSizeLong()) / 1073741824;
        SDCardCheck();
        Log.e("Memory", "Available MB  Internal: " + GB_Available + "---" + GBTotal);
    }
    
    @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
    static String getExternalSdCardSize() {
        File storage = new File("/storage");
        String external_storage_path = "";
        String size = "";
    
        if (storage.exists()) {
            File[] files = storage.listFiles();
    
            for (File file : files) {
                if (file.exists()) {
                    try {
                        if (Environment.isExternalStorageRemovable(file)) {
                            // storage is removable
                            external_storage_path = file.getAbsolutePath();
                            break;
                        }
                    } catch (Exception e) {
                        e.printStackTrace();
                        Log.e("TAG", e.toString());
                    }
                }
            }
        }
    
        if (!external_storage_path.isEmpty()) {
            File external_storage = new File(external_storage_path);
            if (external_storage.exists()) {
                size = totalSize(external_storage);
            }
        }
        return size;
    }
    
    private static String totalSize(File file) {
        StatFs stat = new StatFs(file.getPath());
        long blockSize, totalBlocks;
        long avaiblockSize, availableBlocks;
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) {
            blockSize = stat.getBlockSizeLong();
            totalBlocks = stat.getBlockCountLong();
            avaiblockSize = stat.getAvailableBlocksLong();
            availableBlocks = stat.getBlockSizeLong();
        } else {
            blockSize = stat.getBlockSize();
            totalBlocks = stat.getBlockCount();
            avaiblockSize = stat.getAvailableBlocks();
            availableBlocks = stat.getBlockSize();
        }
        Log.e("Memory", "Memory--external--" + (double) (blockSize * totalBlocks) / 1073741824 + "---" + (double) (avaiblockSize * availableBlocks) / 1073741824);
        return formatSize(totalBlocks * blockSize);
    }
    
    private static String formatSize(long size) {
        String suffix = null;
    
        if (size >= 1024) {
            suffix = "KB";
            size /= 1024;
            if (size >= 1024) {
                suffix = "MB";
                size /= 1024;
            }
        }
        size = size / 1024;
        StringBuilder resultBuilder = new StringBuilder(Long.toString(size));
    
        int commaOffset = resultBuilder.length() - 3;
        while (commaOffset > 0) {
            resultBuilder.insert(commaOffset, ',');
            commaOffset -= 3;
        }
    
        if (suffix != null)
            resultBuilder.append(suffix);
        return resultBuilder.toString();
    }
    
    Ther is
    some calculation
    behalf of
    these Methods.
    
    StructStatVfs[
    f_bavail=81523,
    f_bfree=81523,
    f_blocks=242304,
    f_bsize=32768,
    f_favail=0,
    f_ffree=0,
    f_files=0,
    f_flag=1038,
    f_frsize=32768,
    f_fsid=0,
    f_namemax=1530
            ]
    
    StructStatVfs[
    f_bavail=1633375,
    f_bfree=1641567,
    f_blocks=3134770,
    f_bsize=4096,
    f_favail=767939,
    f_ffree=767939,
    f_files=804672,
    f_flag=1038,
    f_frsize=4096,
    f_fsid=0,
    f_namemax=255
            ]
    
    
    Internal-
    
            3134770*4096/1024*1024*1024=11.957.10 1633375*4096/1024*1024*1024=6.23
    
    External-
            81523*32768/1024*1024*1024=2.487 242304*32768/1024*1024*1024=7.39
    

提交回复
热议问题