/** * directory of removable SD card, can be different from getExternalStorageDirectory() according * to devices * * @return */ public static File getRemovableSDCardDirectory() { return DeviceInfo.singleton().getDeviceController().getRemovableSDCardDirectory(); }
public static boolean isFileOnRemovableSDCard(File file) { return DeviceInfo.singleton().getDeviceController().isFileOnRemovableSDCard(file); }
/** * wrapper of android.os.Environment.getExternalStorageDirectory * * @return */ public static File getExternalStorageDirectory() { return DeviceInfo.singleton().getDeviceController().getExternalStorageDirectory(); }