1.

Solve : Moving a list of files?

Answer»

I have a folder with 20K files in it. I have a text file called mvfile.txt which has a LIST of names of about 1000 files in it. I want to move all of the files listed in mvfile.txt from the original folder to a new folder. What is the WINDOWS command line to do that?

Teledon Code: [SELECT]FOR /F "tokens=*" %%I in (mvfile.txt) do copy "%%I" "c:\some other folder\"



Discussion

No Comment Found