Hi everyone,
I hav 1000 jpeg files with numbered 1-1000. I need to move 1.jpeg-200.jpeg into a folder. wht is the commmand for batch move (how to specify sequence or range)
Need Move batch code for sequence files.
Moderator: DosItHelp
Re: Need Move batch code for sequence files.
It depends on your situation, what is the best to do, you could do domething like that:
If that is what you need, then remove the echo in the above line.
penpen
Code: Select all
for /L %%f in (1,1,1000) do echo move "%%~f.jpeg" target
penpen
Re: Need Move batch code for sequence files.
Change the 1000 to 200 if you only want to copy 1 to 200