Retrieving File Information In C#

  • Thread starter Thread starter DevUser
  • Start date Start date
D

DevUser

Hi,

Can someone tell me how to access the "Summary" information in a file
property?

Any help is appreciate!

C.
 
Can someone tell me how to access the "Summary" information in a file
property?

That's probably from a Word or Excel file, right? Those are so called
"compound" or "structured storage files", which can be accessed using
the IStorage COM interface.

Read up on structured storage here:
http://msdn.microsoft.com/library/d...-us/stg/stg/structured_storage_start_page.asp

Should be fairly easy to use from .NET directly....

Marc

================================================================
Marc Scheuner May The Source Be With You!
Bern, Switzerland m.scheuner(at)inova.ch
 
Look at DSOFile its a DLL written by MS to get this info out, as Marc sad
this is "structured storage files" but if your not a C++ person DSOFile can
start you off running.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top