Replace every image in a folder with another image

lind

New Member
Hai, if I have a folder with like 50 different images, and I want all the images to be the same, but not change name, how do I do that?
 

Agent Smith

Well-Known Member
I don't understand. You want to have 50 images that are all the same image of something, but each image has a different name?
 

Cromewell

Administrator
Staff member
Although the question makes no sense, I think something like this.

mkdir ..\Backups
robocopy . ..\Backups
for /r %%i in (*) do (copy c:\path\to\source_file.jpg %%i)
 
Top