Save file in Tizen with Xamarin.Forms
By Luca Tommasi
08 May 2017 06:55
English
3 Replies
I can save files in Android with Xamarin.Forms so:
public void SaveText (string filename, string text) {
var documentsPath = Environment.GetFolderPath (Environment.SpecialFolder.Personal);
var filePath = Path.Combine (documentsPath, filename);
System.IO.File.WriteAllText (filePath, text);
}
How can I do it in Tizen with Xamarin.Forms?
Thanks.
You must log in to use this service. Log in now?
The tag you entered already exists.
Do you want to report this post as spam?
The post has been reported as spam.
cannot be empty.
Are you sure you want to cancel and return to the list?
The code has been copied to the clipboard.
Enter a title.