View Single Post
Old 11-27-2023, 09:39 AM   #2
yonkyunior
Cultivator
yonkyunior doesn't litteryonkyunior doesn't litteryonkyunior doesn't litter
 
yonkyunior's Avatar
 
Posts: 94
Karma: 216
Join Date: Feb 2015
Device: PRST2
with the help of chatGPT, I can copy set of folders with batch path of folders each line,
completelist.txt is containing path folders
Quote:
D:\01LIBRARY\001 Fiction\A. C. Benson
D:\01LIBRARY\001 Fiction\A. F. Brady
D:\01LIBRARY\001 Fiction\A. J. MacKenzie
Quote:
@echo off
set "destination=D:\01LIBRARY\000 Library Copy Extras\"

for /f "delims=" %%a in (completelist.txt) do (
robocopy "%%a" "%destination%%%~nxa" /e
)

echo "Copy process completed."
pause
Now I can Delete that extra authors.
and check again if there's extra titles.
yonkyunior is offline   Reply With Quote