Android examples for Hardware:SD Card
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 a v a 2 s. c o m*/ return false; } }