Is it possible to get the name or information about a file extention in a UWP app?
Example: I'd like to call a method like:
string GetFileExtensionAppName(string extension)
And have an example like:
Pass in
".pdf"
and get back"Adobe PDF Document"
or something similar. Is there an easy way to do this without creating a hard-coded dictionary? Just getting the name of the default application the extension is associated with works as well.