Cache directory-д дэд хавтас үүсгэх
File file = new File(getCacheDir(), "your folder name/");
//Дээрх folder байгаа эсэхийг шалгах
if (!file.exists()) {
//байхгүй тохиолдолд үүсгэх
if(file.mkdirs()){
//Үүсгэсэн folder тоо файл хуулах
FileOutputStream fos = new FileOutputStream(new File(getCacheDir(), "your folder name/" + хуулах файлийн зам));
fos.close();
}
}
Cache directory устгах
public static void fdeleteCacheDir(Context context) {
Runtime localRuntime = Runtime.getRuntime();
String cachePath = context.getCacheDir().getPath();
String cmd = "rm -R " + cachePath;
try {
localRuntime.exec(cmd);
} catch (IOException err) {
Log.d(TAG, " fdeleteCacheDir:" + err.getMessage());
}
}
0 санал,шүүмж:
Post a Comment