Photo Dublicating and renaming

mrvictorward

TPF Noob!
Joined
Apr 13, 2010
Messages
1
Reaction score
0
Location
Fin
Can others edit my Photos
Photos OK to edit
Hello

I have quite a problem.
I have a photo, which i need to copy to about tenthounsound times.
Copies should be named pic00001.jpg, pic00002.jpg, pic00003.jpg... and so on.
Manually it takes so long... And I also need to do it ever so often.

Any help would be much appriciated.

Thank you.

Vicward
 
Try running a command like this:

FOR /L %X IN (1,1,1000) DO echo f | xcopy c:\myfile.jpg c:\myfile%X.jpg


If you save it as a batchfile use:

FOR /L %%X IN (1,1,1000) DO echo f | xcopy c:\myfile.jpg c:\myfile%%X.jpg



That's (StartNumber,Increment,EndNumber). Adjust as needed
 
Last edited:

Most reactions

Back
Top