Android examples for Phone:Storage
Checks if external storage is available for read and write
//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; } }