maint: add utility file for qbitorrent command line

This commit is contained in:
6arelyFuture 2024-09-05 12:19:05 +00:00
parent 39ba27049f
commit 619fba0759

17
add_torrents.bat Normal file
View File

@ -0,0 +1,17 @@
@echo off
setlocal enabledelayedexpansion
:: Set the directory where your torrent files are located
set "TORRENT_DIR=torrents"
:: Change to the directory containing the torrent files
cd /d "%TORRENT_DIR%"
:: Loop through each .torrent file in the directory
for %%f in (*.torrent) do (
echo Adding %%f
qbt torrent add file "%%f"
)
echo All torrents have been added.
pause