I'm developing a Xamarin app and there are cases where I have to interact with files from other apps. 
I'm working with files which have a filename like example.txt.xyz because another app appended .xyz to the filename. Unfortunately, many Android apps such as Samsungs E-Mail don't give me the full filename when they pass a file but instead pass RAW as the filename. 
Is there a way in .net standard, C#, Xamarin or Android where I can still figure out the true filetype (.txt in the above example)?
Given that I'm within Xamarin I don't have access to the full .net functions and can't rely on Internet Explorer as done in a previous question.
