Search found 2 matches

by BBDSBD
05 Nov 2013 07:20
Forum: DOS Batch Forum
Topic: Using the FOR command to copy files listed in a text file
Replies: 3
Views: 1653

Re: Using the FOR command to copy files listed in a text fil

The purpose above was just a test to see what can be done, to implement and help us with our work flow. Currently we have a folder of images, and we have a database in excel listing all of these images with results. So say we want everything that is tagged floral in our database, we may need all of ...
by BBDSBD
05 Nov 2013 05:38
Forum: DOS Batch Forum
Topic: Using the FOR command to copy files listed in a text file
Replies: 3
Views: 1653

Using the FOR command to copy files listed in a text file

Hi, I want to be able to move selected files from a folder (and hopefully a bunch of subfolders in one directory) This is what I have in my .bat file: for /f "delims=" %%i in (TEST.txt) do echo D|xcopy "S:\TEST 1\%%i" "S:\TEST 2\%%i" /i /z /y My TEST.txt document contai...