使用FilePicker可以打开现有文件:
FileResult file = await FilePicker.PickAsync();
TextView textview = FindViewById<TextView>(Resource.Id.textview);
string path = file.FullPath;
var handle = File.Open(path, FileMode.OpenOrCreate);
byte[] data = new byte[10];
handle.Read(data, 0, 10);
是否有类似的方法来保存新文件?