Android开发获取程序缓存目录的方法

下面是获取缓存目录方法:

File cacheDir = getCacheDir();//文件所在目录为getFilesDir();
String cachePath=cacheDir.getPath();

 

获取的目录默认没有最后的”/”,需要自己加上

你可能感兴趣的:(android,String,File)