Join us to show up for other Firefox users 🦊. Earn fun badges and Mozilla swag vouchers! Find out more: https://mzl.la/askafox150

Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

Printout download list

  • 1 Antwort
  • 1 hat dieses Problem
  • 4 Aufrufe
  • Letzte Antwort von cor-el
  • Archiviert

I need to be able to get a printout of the file names and types of files I have doownloaded. Also, would often be useful to printout a list form the history file. How do I do this? [ctrl]P seems to be disabled. Would also be nice to make a file copy of the same info under another name. Seems like it should be rather common - especially when have many dosnloaded technical files, equipment manuals and the like. Also nice to keep some history files elswhere than in the one Firefox file.

Shockwave often hangs and must be disabled - if that adds anything to the issue. Probably unrelated.

Help and or suggestions will be greatly appreciated.

Chandler Shaw, WA6EWY

I need to be able to get a printout of the file names and types of files I have doownloaded. Also, would often be useful to printout a list form the history file. How do I do this? [ctrl]P seems to be disabled. Would also be nice to make a file copy of the same info under another name. Seems like it should be rather common - especially when have many dosnloaded technical files, equipment manuals and the like. Also nice to keep some history files elswhere than in the one Firefox file. Shockwave often hangs and must be disabled - if that adds anything to the issue. Probably unrelated. Help and or suggestions will be greatly appreciated. Chandler Shaw, WA6EWY

Alle Antworten (1)

For the history you can look at:

For a separate download history you would probably have to fallback to SQLite Manager.

  1. Open Profile Directory -> places.sqlite -> Go
  2. Hit the "Execute SQL" tab
  3. Use a SELECT like this:
SELECT content AS Filename, datetime(dateAdded/1000000,'unixepoch','localtime') AS dateAdded, url AS Location, moz_anno_attributes.name AS Annotation
FROM moz_places, moz_annos, moz_anno_attributes
WHERE (moz_places.id = moz_annos.place_id) AND (moz_annos.anno_attribute_id = moz_anno_attributes.id) AND ((moz_anno_attributes.name LIKE 'downloads/destinationFileURI') OR (moz_anno_attributes.name LIKE 'downloads/destinationFileName'))
ORDER BY dateAdded DESC