How to open html file from inside zip?

Is there a way to open an html file from a zip file that contains images of html links? I am generating htmls with relative resource paths and the browser will not find them in the zip file, I have to extract it first. Opening it from a zip would be ideal. Any way to do this?

+5
source share
4 answers

you need to extract it. When you double-click on the html in a zip file, it is extracted in the background and displayed to you, the only way to read something in a compressed file is to extract it.

+4
source

Your goal is to save all these thousands of htm, gif ... files in one container? The consigner uses an ISO file, it will not be compressed, but at present the hard disk is large enough ... Add autorun.inf to the root directory if you like the windows that open your CD / DVD. CDburnerXP is a free program that can do this for you.

+1
source
  1. Falkon should include a plugin for KDE integration, which allows you to view kio-slave with URLs such as:

    zip:/home/user/path/to/archive.zip info:ls fish:// benutzername@rechnername ... 
  2. At the very least, Firefox can do the trick for the documentation and configuration pages that are packed inside the addon-xpi file, which is also basically a zip archive. But I do not know a way to provide an arbitrary zip code in the address bar.

  3. Eclipse can also direct the embedded browser to a compressed java document.

0
source

As I know, only Firefox can do this via jar:file://c:/myfolder/myzip.zip!/index.html

0
source

All Articles