I used to be able to use something like:
string pathTo20 = Android.OS.Environment.GetExternalStoragePublicDirectory(
Android.OS.Environment.DirectoryPictures).AbsolutePath;
and it would result in
/storage/emulated/0/Pictures
But GetExternalStoragePublicDirectory has been depricated. And I have not found a replacement.
What I want to do is take a picture and copy it to the Pictures directory so that it can be used outside of my app.
Thanks