标签: android directory storage internal
可以通过Environment.getExternalStorageDirectory()读取外部存储卡以获取外部存储卡空间。那么如何进入内部存储路径?如“/ flash”,“/ emmc”,它与ExternalStorage一样使用,请帮忙!
答案 0 :(得分:3)
你可以通过context.getCacheDir()得到内部存储路径。你可以像下面这样制作文件。 文件cacheDir = new File(context.getCacheDir(),“tempfile”);