The acrobat SDK has the following API which gives the metadata of the pdf document which is given in the example under Plugin samples\Metadata\DocumentM
PDDocGetXAPMetadata().
Main Topics
Browse All TopicsYou know how in windows explorer in Windows XP you can right-click on the column titles and add columns like
Attributes
Owner
Author
Title
Comments
Artist
Album Title
Year
Track Number
Camera Model
etc
etc
How can I extract the "title" ? In this case it is a PDF title attribute
I'm going to be renaming all files in a folder to the "Title"
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thanks for the help guys. I will look into this shortly... just to let you know this is for internal-company purposes only. In other words I will only need to support the acrobat version of the files I have, so it doesn't have to be very scalable.
When I visit this in about an hour I will look for the API.
The API is your best bet then. Normally using the API can be a huge deterrent since you would need to be sure that each client computer to run your software would need the same version in order to be compatible. I also seem to recall that the API will only work if you have the professional version or better installed...
Business Accounts
Answer for Membership
by: developmentguruPosted on 2009-06-10 at 10:33:18ID: 24593992
It is my understanding that the attributes within a PDF are stored within the PDF file. Depending on the PDF version (you may need to support multiple versions). Reading the file to retrieve the attributes (or one in particular) will mean coding the access to the file (unless you have already purchased code to do this). Here is the most recent specification Adobe put out on their own.
t/acrobat/ pdfs/PDF32 000_2008.p df
http://www.adobe.com/devne
Future updates are done through the ISO standards committee and, once you have their newer version, they do have some additions to it. The link I have you is a 756 page document. You may not need to get into it that far since you only want the attribute.
That covers "how" to get it, now if you want to be able to access it from within the explorer as a column type... I think that should be posted as a separate question. I believe it would involve making a shell extension that relates to the file type and uses your code to read the file, extracting the attribute.