如何获取内部存储目录,如“\ flash”,“\ emmc”

时间:2011-06-29 03:23:21

标签: android directory storage internal

可以通过Environment.getExternalStorageDirectory()读取外部存储卡以获取外部存储卡空间。那么如何进入内部存储路径?如“/ flash”,“/ emmc”,它与ExternalStorage一样使用,请帮忙!

1 个答案:

答案 0 :(得分:3)

你可以通过context.getCacheDir()得到内部存储路径。你可以像下面这样制作文件。 文件cacheDir = new File(context.getCacheDir(),“tempfile”);