is External Storage Writable - Android Hardware

Android examples for Hardware:SD Card

Description

is External Storage Writable

Demo Code


//package com.java2s;

import android.os.Environment;

public class Main {
    public static boolean isExternalStorageWritable() {
        String state = Environment.getExternalStorageState();
        if (Environment.MEDIA_MOUNTED.equals(state)) {
            return true;
        }//w  ww.j a  v a  2  s  . c o m
        return false;
    }
}

Related Tutorials