Java tutorial
//package com.java2s; import android.os.Build; import android.os.Environment; public class Main { private static boolean isExternalStorageRemovable() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) { return Environment.isExternalStorageRemovable(); } return true; } }