Tagging PDF Files

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I deal with a large number of PDF files and would like to track them with
tags. Apparently this information cannot be added. Is this an MS or Adobe
problem? Is there a solution or work-around?
 
Kentb

I imagine this would be an Adobe question. I believe you need to have the
full version of Acrobat to work with tags on PDF files.
 
Is tagging then not a function of Explorer and the directory file, but rather
the file being tagged? ie, the tagging information is kept in the file that
is tagged and thus becomes application specific?
Kentb
 
Kentb said:
Is tagging then not a function of Explorer and the directory file, but
rather
the file being tagged? ie, the tagging information is kept in the file
that
is tagged and thus becomes application specific?

No :-)

Exposing file properties in Explorer is the job of a "Shell Extension" -
basically a DLL supplied by the 3rd party vendor which gets installed into
Explorer. So for example, Adobe install a "PDF Shell Extension", usually
C:\program files\common files\adobe\acrobat\activex\pdfshell.dll - which
enables the Properties for PDF files, in Explorer.

How the extension determines and stores the various Properties, is entirely
up to the logic and ingenuiyty of the programmer writing the extension. Some
properties, such as File Size, can be easily determined by standard
operating system calls - so there's no need to store them separately. Other
custom properties, such as "Author" or "Should this document be reviewed?"
are often stored as Alternative File Streams in the File object. So, they
are not kept "in the file" in any obvious kind of way; they are metadata
associated with the default data stream of the file. See
http://msdn2.microsoft.com/En-US/library/aa969349.aspx
and
http://msdn2.microsoft.com/en-us/library/aa969360.aspx
for the grisly details!

Cheers
Andrew
 

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