Hello,
I’ve question regarding external files feature.
We have on-line application that can generate off-line version contains static html files with proper pictures.
More than 90% of publication is high resolution pictures and this cause that generated exe with publication exceeds 4 GB.
In general Windows is unable to run such big file (it shows error “Not enough storage is available to process this command”). It does no matter if computer have 4 GB / 8 GB / 16GB memory available.
So we decided to compile small exe with external images. But structure of generated site is like in example below:
ROOT/index.html
ROOT/models/1/1.html
ROOT/images/1/3/4/image1.jpg
ROOT/images/1/3/4/image2.jpg
ROOT/images/1/7/9/image3.jpg
ROOT/images/2/8/11/image4.jpg
etc.
If I set image as a external file as I understood documentation I’m supposed to write full path to image for example %PATH%/images/1/3/4/ and this should be done for every external file. In my case it is about 1000 files so it is rather time consuming manual work.
Did I miss something or there is other solution for this problem. As I’ve mentioned I cannot change structure of generated static html pages.
Thanks for any suggestions
Regards
Tom