Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / shell

Obtain file properties from shell using ExtraPropertiesProvider class

3.00/5 (2 votes)
25 Mar 2010CPOL 1  
ExtraPropertie...
ExtraPropertiesProvider obtain properties of a file using IShellFolder2, so you can get properties without parsing them yourself. To obtain a property, you need a file and a property key. A list of possible(but not all) property keys can be found in:

  • SummaryInformation
  • DocSummaryInformation
  • ImageSummaryInformation
  • MusicSummaryInformation
  • VideoSummaryInformation


You can use GetCollumnInfo() method to obtain a list of property keys in a specific folder as well.

C#
string file = "c:\yourpicture.bmp";
string ext = PathEx.GetExtension(file);

string imageFilter = ".jpg,.jpeg,.png,.gif,.bmp,.pcx.tiff";

if (imageFilter.IndexOf(ext) != -1)
  foreach (string key in ImageSummaryInformation.PropertyDic.Keys)
  {
     PropertyKey propKey = ImageSummaryInformation.PropertyDic[key];
     Debug.WriteLine("{0} = {1}", key, ExtraPropertiesProvider.GetProperty(file, ref propKey);
  }


This will return all known properties, and their values:

C#
foreach (CollumnInfo col in ExtraPropertiesProvider.GetCollumnInfo(file.Parent))
                if (col.CollumnName != "")
                {
                    PropertyKey propKey = col.PropertyKey;
                    object obj = ExtraPropertiesProvider.GetProperty(file, ref propKey);
                    if (obj != null)
                        Console.WriteLine(col.CollumnName + " - " + obj.ToString());
                }

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)