I am using XLab's Camera control to select a picture from the device. The Camera Control gets me the ImageSource and I set myImage.Source to this. Fine. But now I want to copy this picture file to my app's local folder. How can I do that?
The Working with Files documentation shows me for only the Text Files, but not for any other file type.
Few questions that I have are:
- How to get the picture files full path+name from ImageSource, if at all possible?
- Can I use StreamReader and StreamWriter in Xamarin.Forms?
- Will use of System.IO.File.ReadAllBytes does fulfill my need?