I am building a .net Maui app which targets Mac Catalyst. I implemented a folder picker from @GeraldVersluis
When choosing the folder the following path is returned: pickedFolder = file:///Users/macminim1/Documents/Sorted%20Testing/
If I then use:
if (System.IO.Directory.Exists(pickedFolder))
{
}
The result is false. Obviously, the folder exists as I just chose it and I confirmed it's existence in the file system.
Thanks in advance!