There are good file picker I have found on the internet but don't see a way to customise which file extension of files can be displayed.
I am trying out these two packages Compass File Picker and FilePicker-Plugin-for-Xamarin-and-Windows which is a cross platform. None of this I can find to filter out the file and only show certain type of files.
I have checked
FilePicker-Plugin-for-Xamarin-and-Windows
's source codes the file type of this plugin is hardcoded byintent.SetType("*/*");
. So it is not possible to use this plugin to filter a file type.But you can create your own File Picker for filtering out the folder and file extension you wanted:
And by overriding the OnActivityResult, you will get the result of the file picker.