If i create a folder in windows and right click select properties and give some comment about it in the comment field.
in C#, How do i get the comment for a folder ? Is there any “Comment” Property available ?
If i create a folder in windows and right click select properties and give
Share
As far as I know there is no purely managed mechanism for retrieving the extended file information. You can use the COM object
Shell.Applicationto retrieve it though.http://technet.microsoft.com/en-us/library/ee176615.aspx
http://msdn.microsoft.com/en-us/library/bb787870%28v=vs.85%29.aspx
Read/Write 'Extended' file properties (C#)