Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / Shell
Tip/Trick

Obtain file properties from shell using ExtraPropertiesProvider class

Rate me:
Please Sign up or sign in to vote.
3.00/5 (2 votes)
25 Mar 2010CPOL 11.6K   4  
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)


Written By
Founder
Hong Kong Hong Kong

Comments and Discussions

 
-- There are no messages in this forum --