Here you can find the source of isExtStorageWritable()
public static boolean isExtStorageWritable()
//package com.java2s; import android.os.Environment; public class Main { public static boolean isExtStorageWritable() { String state = Environment.getExternalStorageState(); if (Environment.MEDIA_MOUNTED.equals(state)) { return true; }//from ww w.j a v a 2 s .c o m return false; } }