Posts by Jussi 7Virtual • 11 points
2 posts
-
1
votes0
answers19
viewsQ: I can’t write a file with usb otg
I can read the files in the pen drive folder, but I can’t write. This is the code I use to try to write: string path = "./storage/A691-92EC"; string file1 = "usb.txt"; if (Directory.Exists(path)) {…
xamarin-formsasked Jussi 7Virtual 11 -
0
votes0
answers97
viewsQ: "ROOT ELEMENT IS MISSING" ERROR WHEN TRYING TO DESIRIALIZE XML IN XAMARIN FORMS
public T Exportar<T>(T obj, string nomeArquivo) { try { string file = Global.LocalPasta + nomeArquivo + ".xml"; if (File.Exists(file)) File.Delete(file); using (var stream = new…