Hi I'm trying to find out how to read/write to the extended file properties in C# e.g. Comment, Bit Rate, Date Accessed, Category etc that you can see in Windows explorer. Any ideas how to do this? EDIT: I'll mainly be reading/writing to video files (AVI/DIVX/...)
|
There's a CodeProject article for an ID3 reader. And a thread at kixtart.org that has more information for other properties. Basically, you need to call the |
|||
|
|
|
For those of not crazy about VB, here it is in c#:
|
|||||||||||||||||||
|
|
This sample in VB.NET reads all extended properties:
You have to add a reference to |
|||||||||
|
|
Thank you guys for this thread! It helped me when I wanted to figure out an exe's file version. However, I needed to figure out the last bit myself of what is called Extended Properties. If you open properties of an exe (or dll) file in Windows Explorer, you get a Version tab, and a view of Extended Properties of that file. I wanted to access one of those values. The solution to this is the property indexer FolderItem.ExtendedProperty and if you drop all spaces in the property's name, you'll get the value. E.g. File Version goes FileVersion, and there you have it. Hope this helps anyone else, just thought I'd add this info to this thread. Cheers! |
|||||
|
|
Check this Link. You will get more Clearance about GetDetailsOf() and its File Properties based on the Win-OS version wise.
Hope this may helpful to some one here.. |
|||
|
|
|
I'm not sure what types of files you are trying to write the properties for but taglib-sharp is an excellent open source tagging library that wraps up all this functionality nicely. It has a lot of built in support for most of the popular media file types but also allows you to do more advanced tagging with pretty much any file. EDIT: I've updated the link to taglib sharp. The old link no longer worked. EDIT: Updated the link once again per kzu's comment. |
|||||||||||||
|
protected by Will♦ Sep 15 '10 at 17:57
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

