I need to programmatically delete all caches of my Xamarin.Forms application called MyXFApp, the same way as the button 'Clear Cache' of the Setting/Apps/MyXFApp/Storage page.
I read the Android and Xamarin.Forms official documentations, and used the methods getGetCacheDir() and GetExternalCacheDir() to retrieve the cache directories, and I delete both of them. After deleting both directories, I expect to see the cache size to 0 byte within the Setting/Apps/MyXFApp/Storage page. But the cache size displayed in the Setting/Apps/MyXFApp/Storage page has indeed diminished, but is not strictly equal to 0 byte, and I do not understand why?
Is there any other directory I must delete in order to fully clear my Xamarin.Forms cache? Or is it a bug of the Setting/Apps/MyXFApp/Storage displayed cache size?
And otherwise, what is the correct way or difference(s) between these two methods?
I tried to delete directories obtained from methods getGetCacheDir() and GetExternalCacheDir(). Expected to see cache size of 0B in the Setting/Apps/MyXFApp/Storage page, but I see 20KB and not 0B.
Thanks for your answers My code is:
I try the response of @Liyun Zhang