I would like to ask for help with this: I have 1 image file (default.jpg) and I need to change its name into cca. 500 different versions based on content in another file (names.txt). With each entry in names.txt a new copy of default.jpg is created.
Names.txt would be like this:
Filename1
Filename2
Filename3and copies of default.jpg called Filename1.jpg, Filename2.jpg, Filename3.jpg are created
You could really save me a lot of time, because otherwise I would have to do this manually for 500 files.
Thank you in advance
@echo off for /f "tokens=*" %%i in ( names.txt ) do ( copy default.jpg %%i.cca )Tony
Yes (14) | ![]() | |
No (14) | ![]() | |
I don't know (15) | ![]() |