Search found 6 matches

by ni.va
08 Aug 2012 12:58
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15800

Re: Batch moving using text file

Hi
@alperefe: I just wanted to update the first post, So your Problem was a need to create a hole folder structure in destination... am I getting right??
by ni.va
12 Mar 2011 07:28
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15800

Re: Batch moving using text file

Thanks, that's working correctly. :D :D

Updated first post, Correct me if I'm wrong...
by ni.va
12 Mar 2011 06:38
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15800

Re: Batch moving using text file

Thanks,

but %%h may be file path with extension,

So both codes will result ...\1.txt\1.txt.
by ni.va
12 Mar 2011 05:53
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15800

Re: Batch moving using text file

My Problem has been solved. for those who have lists like: file name|source directory|destination directory can use this cammand. it will create destination folder & I added the second line to move the files. for /f "tokens=1,2,3 delims=|" %%f in (List.txt) do xcopy "%%g\%%f"...
by ni.va
12 Mar 2011 04:50
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15800

Re: Batch moving using text file

Thanks SO MUCH!!! It worked. but did not create the destination folders.
I had to create the folders manually...
by ni.va
09 Mar 2011 06:11
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15800

Batch moving using text file

Hi, I have around 2000 pdf files that each must go to a different folder. I made a list of them containing old file names, & new file path & names (like : --\--.pdf) the path is in 3 levels. can I move & rename files using this list? I don't have any scriping knowledge All of my files ar...