Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Zjistit více

Printout download list

  • 1 odpověď
  • 1 má tento problém
  • 1 zobrazení
  • Poslední odpověď od cor-el

more options

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

Všechny odpovědi (1)

more options

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