If I try to uninstall the application I would like the files to be deleted, but if I uninstall the application and reinstall it the contents of the files remain. how could i solve?
switch (Device.RuntimePlatform)
{
case Device.iOS:
dbPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "DbLocal.db3");
break;
case Device.Android:
dbPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "DbLocal.db3");
break;
}
I have problems with the files on every page, and until recently everything works perfectly. Even if I create new files, or add strings to existing ones, when I restart the application the changes no longer exist. If I try to connect the physical devices to the PC, and I go to the folder of my application, the files do not exist.
If you try to change the terminal instead, the problem does not exist, but until yesterday it works on both