I am new to Xamarin Android, but have some experience with C# and WinForms. I have a modern Android device using Android 9. I can use the built-in File Manager to see my SD card. I can also use that app to create a folder on my SD card (for example "Test Folder"). What I have not been able to do is access that folder using my C# Xamarin Android code. Should I be able to, or is this frowned upon? Is there a generic solution that will work on other devices that also have an SD card?
The Android.OS.Environment.GetExternalStoragePublicDirectory method does not seem to recognize the presence of the removable, external storage. I have also tried
new Intent(Intent.ActionOpenDocumentTree);
This allows me to "see" the new folder, but I can't seem to do anything with the URI that I get back.