Here is my code:
string f = GetRefInfoServise.GetRefInfo("GA");
byte[] data = System.Convert.FromBase64String(f);
var backingFile =
Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal), "arch.zip");
File.WriteAllBytes(backingFile, data);`
The method does not return an exception, but the file is not written. I'm trying to do this on Android API 28