In my application, I am downloading a PDF file (since there is no way to show PDF file in a webview) on Android to-
Environment.GetFolderPath (Environment.SpecialFolder.Personal);
Now I want to provide users the path to this folder so that they can browse and open the files-similar to when a file is downloaded in a chrome browser. How can I do that?
Thanks