views:

94

answers:

3

I have a bunch of office 2003 documents (.ppt, .doc, .xls) in a folder, and need to extract the "author" property from each file. What would be the best way to do this, is there some sort of (free) office-api I could use to read this information?

I'm using .NET 2.0

A: 

Check this Link : http://bytes.com/groups/net-c/260138-extended-file-properties

Anuraj
As far as I can see, this only covers access NTFS-properties or MP3 properties.
Espo
+1  A: 

This post contains some code for accessing MS Office file properties.

A codeproject article - it's in c++, but it might be useful.

This looks like the most promising article.

cofiem
+1  A: 

I found an article on MSDN about Dsofile.dll which seems to work as expected. Other suggestions are still welcome.

Espo