Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open an html file from inside a zip?

Tags:

html

zip

Is there any way to open an html file from within a zip file which contains images the html references? I generate htmls with relative paths to resources and the browser won't find them in the zip file, I have to extract it first. Opening it from the zip would be ideal. Any way to do it?

like image 850
Spencer Avatar asked Jul 25 '12 19:07

Spencer


1 Answers

you have to extract it. When you double click on your html in the zip file, it is extracted in the background and shown to you, the only way to read anything in a compressed file is by extracting it.

like image 120
Ibu Avatar answered Sep 17 '22 23:09

Ibu