Checks if external storage is available for read and write - Android Hardware

Android examples for Hardware:SD Card

Description

Checks if external storage is available for read and write

Demo Code


//package com.java2s;

import android.os.Environment;

public class Main {
    /** Checks if external storage is available for read and write   */
    public static boolean isExternalStorageWritable() {
        String state = Environment.getExternalStorageState();
        if (Environment.MEDIA_MOUNTED.equals(state)) {
            return true;
        }/*from w w w . j  a v a  2  s. c  o m*/
        return false;
    }
}

Related Tutorials