目前很多手机都有双内存卡。
分为以下两种:
一:系统内置内存卡。
二:外置内存卡。
一般获取是否有内存卡暂且不提(百度一下全都是),如果是这种有双内存卡的那么一般获取内存卡路径,或者判断内存卡是否存在都是获取内置的sdcard ,所以无论怎么获取,即使外置内存卡没有插入也会返回为有外置内存卡并且为true。
内置的sdcard(返回为sdcard0)
插入的外置内存卡 (sdcard1)
如何获取真正插入的外置内存卡呢,两中方式:
一:
boolean isSDCardExistence = false;
final IMountService mountService = IMountService.Stub.asInterface(
ServiceManager.getService("mount"));
try {
isSDCardExistence = (mountService.getVolumeState("/storage/sdcard1")).equals(android.os.Environment.MEDIA_MOUNTED);
} catch (RemoteException e) {
e.printStackTrace();
}
String result = getExtSDCardPath();
if (!isSDCardExistence) {
String[] strArray = new String[2];
for (int i = 0; i < items.length - 1; i++) {
strArray[i] = items[i];
}
items = strArray;
}
第二种方式为网友分享做一下简单修改,因为不同厂商内存卡挂在的节点可能不同,就以本人手机当前内存卡的节点为例:
返回的String就就是外置内存卡的路径了。
public String getExtSDCardPath()
{
String lResult = null;
try {
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("mount");
InputStream is = proc.getInputStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line;
while ((line = br.readLine()) != null) {
Log.i("ztf - " + TAG, "line = " + line);
if (line.contains("sdcard1"))
{
String [] arr = line.split(" ");
String path = arr[1];
File file = new File(path);
if (file.isDirectory())
{
lResult = path;
}
}
}
isr.close();
} catch (Exception e) {
}
return lResult;
}