How to set postprocessor to zip images from reddit to a cbz archive #1977
-
I can't quite figure out how to set up the postprocessor in a way that in the case of multiple images in a reddit post My settings:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I accidentally found how the postprocessor zip option works. Basically it treats the innermost folder of the destination path as the archive filename. Example: if I write So if I want to have the archive inside of the |
Beta Was this translation helpful? Give feedback.
I accidentally found how the postprocessor zip option works. Basically it treats the innermost folder of the destination path as the archive filename.
Example: if I write
C:\Path\to\dest
, the result will beC:\Path\to\dest.cbz
.So if I want to have the archive inside of the
dest
folder, I'll have to treat the archive's filename as the innermost folder:C:\Path\to\dest\my_archive
which will get memy_archive.cbz
inside ofdest
.