When you right-click on a file in Windows and select "Properties" from the menu, it opens the Properties window. On that window for most files types there's a "Summary" tab that contains a variety of information.
Is there a managed/.NET way to retrieve that information? I had assumed incorrectly that this would be a trivial thing to do and that it would all be part of some dictionary object on the System.IO.FileInfo object and you could just feed it a string of the tag you wanted and it would return some value. I was way wrong.
In my searches all I've been finding are shell commands, mentions of api calls or installing com objects. Those are fallback solutions (and ones I would rather avoid). What I really want to know is if I'm overlooking a .NET way of accessing that information?