-
How do I change the default download directory? Gallery-dl downloads files in C:\Users\Admin\gallery-dl. I would like to change the download folder to D:\gallery-dl. I can simply transfer the downloaded files after downloading, however, I periodically update the downloaded artist galleries, therefore, this is not a very convenient solution. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
First of all, gallery-dl uses a relative path, so if you run gallery-dl from You can set the output directory with this option: Alternatively, if you want to avoid using this option with every gallery-dl invocation, you need change the gallery-dl/docs/gallery-dl.conf Lines 1 to 6 in c34dbc8 "base-directory": "D:/gallery-dl"` |
Beta Was this translation helpful? Give feedback.
First of all, gallery-dl uses a relative path, so if you run gallery-dl from
E:\
the default download directory would beE:\gallery-dl\
You can set the output directory with this option:
gallery-dl --dest "D:\gallery-dl" <YOUR_URL_HERE>
Alternatively, if you want to avoid using this option with every gallery-dl invocation, you need change the
"base-directory":
option in your config file, like this here:gallery-dl/docs/gallery-dl.conf
Lines 1 to 6 in c34dbc8