Here you can find the source of isExternalStorageWritable()
public static boolean isExternalStorageWritable()
//package com.java2s; import android.os.Environment; public class Main { public static boolean isExternalStorageWritable() { String state = Environment.getExternalStorageState(); return Environment.MEDIA_MOUNTED.equals(state); }//www .ja v a2s . c o m }