一:获取 Android 当前应用内部私有根目录
public static String getInternalStoreFilesPath(Context context){
return context.getFilesDir().getAbsolutePath();
}
二:获取 Android 当前应用外部公共根目录
public static String getExternalStoreFilesPath(Context context){
String filesPath ;
if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())
|| !Environment.isExternalStorageRemovable()) {
//外部存储可用
filesPath = context.getExternalFilesDir(null).getPath() ;
}else {
//外部存储不可用
filesPath = context.getCacheDir().getPath() ;
}
return filesPath;
}
网友评论