Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

Adobe Acrobat Reader and Foxit Reader both have a feature that allows them to remember what was the last page the user was reading.

Where do these PDF readers (both Adobe and Foxit) store such information?

share|improve this question
Your earlier post version would seek to have an innumerable list of Readers. – random Oct 8 '12 at 4:12

3 Answers

Most likely the registry. For instance, Foxit Reader stores that information at the following location:
HKCU\Software\Foxit Software\Foxit Reader 5.0\Preferences\History\LastOpen
(The exact path might be slightly different for different versions.)

Ther's a subkey for each recently opened file, and a value called Page stores the page number where that file was opened last.

share|improve this answer
Any idea on where Adobe Acrobat should keep this? – Gustavo Bandeira Oct 5 '12 at 21:54
I don't have Adobe Reader installed on any of my computers so can't check, but try searching through HKCU\Software\Adobe and its subkeys. – Indrek Oct 5 '12 at 22:58

In some cases, I think this kind of data can be stored as metadata for the PDF, which is basically just key-value pairs.

In other cases it might be stored by the particular application used to open/modify the PDF (the location would then vary from application to application).

share|improve this answer

Thanks Indrek. Your information also helped me.

I had the bad habit to keep opened many opened tabs. Also, I turned on the reopen last session feature.

One day, the program started to load all files, but after the 132th one, the software crashed.

The registry path I searched in this case was

"HKCU\[...]\History\LastSession".

And there it was a list in the same fashion as the \LastOpen registry dir.

I deleted the last folders inside that dir, and Foxit started to work again.

Maybe this info could help.

share|improve this answer
This is a comment, and should not be posted as an answer. – AthomSfere May 21 at 21:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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