I keep downloading them only to remove them afterwards...
It downloads both *_media_* files and a *_post_* file (which is a duplicate of the first *_media_* file), so the *_post_* file is redundant.
cd "%LOCALAPPDATA%\Programs\PatreonDownloader"
PatreonDownloader.App.exe --url https://www.patreon.com/user/posts --download-directory "%USERPROFILE%\OneDrive\Images\Patreon"
cd "%USERPROFILE%\OneDrive\Images\Patreon"
for %%F in (*_post_*) do (del "%%F")
pause
exit
I keep downloading them only to remove them afterwards...
It downloads both
*_media_*files and a*_post_*file (which is a duplicate of the first*_media_*file), so the*_post_*file is redundant.