获取SD卡路径
Posted yaolunhui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取SD卡路径相关的知识,希望对你有一定的参考价值。
public static String getSDPath(){
File sdDir = null;
boolean sdCardExist = Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED); //判断sd卡是否存在
if (sdCardExist)
{
sdDir = Environment.getExternalStorageDirectory();//获取跟目录
}
return sdDir.toString();
}
以上是关于获取SD卡路径的主要内容,如果未能解决你的问题,请参考以下文章