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

Android examples for Phone:Storage

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  ava  2 s  .c o m
        return false;
    }
}

Related Tutorials