Search found 4 matches

by Oms
12 Jul 2016 04:10
Forum: DOS Batch Forum
Topic: Batch to move files baed on a list with source and destination paths
Replies: 8
Views: 5420

Re: Batch to move files baed on a list with source and destination paths

From the command line. With your header: For /F "UseBackQ Skip=1 Delims=" %A In ("C:\Users\Oms\Test.txt") Do @Move %A Without your header: For /F "UseBackQ Delims=" %A In ("C:\Users\Oms\Test.txt") Do @Move %A From a batch file. With your header: For /F "...
by Oms
12 Jul 2016 03:49
Forum: DOS Batch Forum
Topic: Batch to move files baed on a list with source and destination paths
Replies: 8
Views: 5420

Re: Batch to move files baed on a list with source and destination paths

I'll try that again… ⋅ Is the file in columns separated by multiple spaces? ⋅ Is the file in columns separated by horizontal tabs? ⋅ Is the file in columns separated by a single space? When you say the Input Output does not have to be in the file, are you creating the ...
by Oms
12 Jul 2016 03:15
Forum: DOS Batch Forum
Topic: Batch to move files baed on a list with source and destination paths
Replies: 8
Views: 5420

Re: Batch to move files baed on a list with source and destination paths

ShadowThief wrote:Is the line Input Output part of the file? Will the paths contain any spaces?


Hi, the Input Output does not need to be in the file. The Paths do not have any spaces. Cheers.
by Oms
11 Jul 2016 13:11
Forum: DOS Batch Forum
Topic: Batch to move files baed on a list with source and destination paths
Replies: 8
Views: 5420

Batch to move files baed on a list with source and destination paths

Hi all, I am new to this Forum and Dos Batch processing. I have to move a large ammount of images. I have a text file where the images are listed individually with their source path and their destination path. Something like this: Input Output C:\projectA\asia\image1 Y:\blue\image1 C:\africa\image2 ...