get Available Internal Memory Size Long In Bytes - Android Hardware

Android examples for Hardware:Memory

Description

get Available Internal Memory Size Long In Bytes

Demo Code


//package com.java2s;
import android.os.Environment;
import android.os.StatFs;
import java.io.File;

public class Main {
    public static long getAvailableInternalMemorySizeLongInBytes() {
        File path = Environment.getDataDirectory();
        StatFs stat = new StatFs(path.getPath());
        long blockSize = stat.getBlockSize();
        long availableBlocks = stat.getAvailableBlocks();
        long result = blockSize * availableBlocks;
        return result;
        //        return formatSize(availableBlocks * blockSize);
    }/*from   w  ww  .j av a  2  s.  co m*/
}

Related Tutorials