Hi everyone!
I have this code that actually works well:
for /f %a in ('TYPE copy.csv') do copy %a "C:\Path\One\"
The problem is that is very time consuming due to having several folders to copy to.
I need help modding it to follow the set directory inside the "copy.csv"
Filename1 | "C:\Path\One\"
Filename2 | "C:\Path\Two\"
Filename3 | "C:\Path\Three\"
I can change the csv format to anything needed, but I'm totally stuck on how to tell xcopy (or whatever program) to just do what it says to INSIDE my list.
Any thoughts on this would be most appreciated!
Thank you very, very much.