Search found 3 matches
- 12 Feb 2013 21:25
- Forum: DOS Batch Forum
- Topic: Howto Mass Rename Based on Filelist as input
- Replies: 5
- Views: 2634
Re: Howto Mass Rename Based on Filelist as input
Thank you very much. It works. I prepare new folder with same subfolder tree and I modify your batch file to move the files. @echo off for /f "tokens=1,2 delims=;" %%a in (tes.txt) do ( move "%%a" "%%b" >>"file.log" echo "%%a" renamed and moved to &q...
- 12 Feb 2013 07:32
- Forum: DOS Batch Forum
- Topic: Howto Mass Rename Based on Filelist as input
- Replies: 5
- Views: 2634
Re: Howto Mass Rename Based on Filelist as input
The file is the result of drawing checking by engineer, ignore the ending letter ( I assume it is a revision). I just want to rename files based on two information old name and new name. And I need to get the history about this renaming process, maybe log file, like : oldname1 renamed to newname1 ol...
- 12 Feb 2013 06:45
- Forum: DOS Batch Forum
- Topic: Howto Mass Rename Based on Filelist as input
- Replies: 5
- Views: 2634
Howto Mass Rename Based on Filelist as input
Hi everyone, I receive a longlist file to be renamed in a text file with this format: oldfilename;newfilename for example c:\Internal drawing\IN\100034.pdf;c:\Internal drawing\IN\DWG IN100034_a.pdf c:\Internal drawing\IN\100045 c.pdf;c:\Internal drawing\IN\DWG IN100045_c.pdf c:\Internal drawing\IN\1...