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??
Search found 6 matches
- 08 Aug 2012 12:58
- Forum: DOS Batch Forum
- Topic: Batch moving using text file
- Replies: 23
- Views: 15800
- 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.
Updated first post, Correct me if I'm wrong...


Updated first post, Correct me if I'm wrong...
- 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.
but %%h may be file path with extension,
So both codes will result ...\1.txt\1.txt.
- 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"...
- 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...
I had to create the folders manually...
- 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...