How to export posters?

(2017-02-25 18:10)mlaggner Wrote:  I’ve updated the wiki with a generated list of all properties from the various classes at
https://github.com/tinyMediaManager/tiny…-Templates

Thanks for updating the guide. I’ve been trying to export movie posters, but can’t make it work.

Quote:We’ve added a feature to trigger an export of images (with or without scaling) along the meta data export. In the following example you see how a movie poster can be exported via the template:

Code:
${foreach movies movie}
<img src="../${movie(../nopicture.gif);copyArtwork(type=POSTER, thumb=true, width=180, destination=images)}" />
${end}

To initiate the export process you only need ${movie;copyArtwork(type=…)}. All other options are optional.

I used the same code to export to “D:\Documents\” folder.
It correctly creates “D:\Documents\images” folder and adds poster thumbs to there.
But when I open the html file the images don’t show up, pointing to the root folder of D drive instead of images folder.
What am I doing wrong?