Dos script to rename files
Solved/Closed
gbr00435
Posts
1
Registration date
Wednesday August 20, 2008
Status
Member
Last seen
August 21, 2008
-
Aug 21, 2008 at 11:29 AM
rajesh kanna - Jun 3, 2014 at 11:50 AM
rajesh kanna - Jun 3, 2014 at 11:50 AM
Related:
- Rename in dos
- Rename computer cmd - Guide
- Rename lg tv - Guide
- Lg tv rename inputs ✓ - Smart TV Forum
- Dos to unix - Guide
- Rename shortcut key in dell laptop ✓ - Keyboard Forum
Mar 27, 2009 at 05:13 PM
Thanks for the dos script to rename files.
I was stuck on that, and had to rename a large directory with 5000 files distributed in several subdirectories.
And your script worked just perfect!!!!
Thanks
AP
Jul 14, 2009 at 01:02 AM
i am trying to use following command for renaming a1.txt, a2.txt ...aN.txt files to a1-v1.xt ...aN-vN.txt
by running
bathc file run
test *.txt *-v1.txt
contents of batch file
For /r %%x in (%1) do ren "%%x" %2
now my files are getting renamed like a1.txt-v1 which I don't want . I want a1-v1.txt
Please can you tell me the dos command for that.
Thanks in advacne