I would like to write all meta data (including advanced summary properties) for my files in a windows folder to a csv file. Is there a way to collect all the attributes? I see mp3 files have a different set of attributes compared to jpg files. (c#)

This can also be a script (vb, perl)

Update: by looking at libextractor (thank you) I can see this can be achieved by writing different plugins for different type of files. I gather this meta data is not a simple collection...

link|improve this question

22% accept rate
I very nearly answered with this: "I'll answer with the same level of detail. Write a function." but I decided that would be snarky. – EBGreen Sep 17 '08 at 22:07
feedback

9 Answers

In Perl, you can use MP3::Tag or MP3::Info

link|improve this answer
feedback

If you can cope w/ VB.Net: http://www.codeproject.com/KB/vb/mp3id3v1.aspx

If you can cope w/ C++/.Net: http://www.codeproject.com/KB/audio-video/mp3fileinfo.aspx

For either (assuming the C++) is compiled to .Net, you can use Reflector to disassemble the binary and convert it to C#. Check w/ the respective authors about their licenses first (usually Code Project articles are under an open license like CPOL).

link|improve this answer
feedback

In a library? Try libextractor if your software is GPL.

link|improve this answer
can this be used from perl? – Notitze Sep 17 '08 at 22:19
It seems there is a CPAN module: search.cpan.org/~flora/File-Extractor – TobiX Sep 17 '08 at 22:26
feedback

Ok, after the clarification edits, I would suggest looking at the introspection available in .Net. I will warn you however that I think you will get more satisfying results if you forgo introspection and define the specific properties that you want for the file types that you expect to see.

Since scripting is valid, then if this were my problem to solve I would use Powershell since the .net introspection is baked in.

link|improve this answer
feedback

Can you be more specific? Are you wanting this captured in a text file? Can this be a script?

link|improve this answer
feedback

Offtopic: He tagged c# and .Net... It's low info but enough for answer

link|improve this answer
I am not sure how do you mean – Notitze Sep 17 '08 at 22:08
feedback

I think it's the etc. part that would need clarification. If the OP expects someone to give a specific solution then specific requirements would be necessary.

link|improve this answer
feedback

Nice post on the libextractor pointer above: http://gavinjnet.blogspot.com/2007/07/file-magic-and-libextract-on-windows.html

link|improve this answer
feedback

It may not be worth it to add all of the data from a jpeg file (exif data). I would hand pick what attributes I wanted from those files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.