I'm trying to delete the app's cache subfolder (or even the cache folder itself), but nothing happens.
cacheFolder = File(this.cacheDir, "/download")
deleteFolder(cacheFolder)
private fun deleteFolder(fileOrDirectory : File){
fileOrDirectory.deleteRecursively()
}
The one-liner doesn't work too
this.cacheDir.deleteRecursively()
Any ideas?