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.