Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: LGPL 

import android.os.StatFs;

public class Main {
    private static boolean checkMicroSDCard(String fileSystemName) {
        StatFs statFs = new StatFs(fileSystemName);

        long totalSize = (long) statFs.getBlockSize() * statFs.getBlockCount();

        if (totalSize < 1024 * 1024 * 1024 * 1024) {
            return false;
        }

        return true;
    }
}