diff --git a/add_torrents.bat b/add_torrents.bat new file mode 100644 index 0000000..cc1fb21 --- /dev/null +++ b/add_torrents.bat @@ -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