When you right click on a file in a folder in your PC, and go to properties in the dropdown menu, a dialog box pops up. One of the tabs on that box is details.
Is there a way to access those details in code? I've tried using files, directories, FileInfo, FileVersionInfo and I can't seem to figure out how to, and even if they are accessible. I am uploading images from a local repository folder and need some of those details to add as metadata in the blob for storage in Azure Storage.
var info = FileVersionInfo.GetVersionInfo(@"C:\\mypath\\GE_StrengthenedFrame.JPG");
that does not produce any methods to access properties, for example an image will have properties such as Camera and Image and sub properties to those main properties.