Dos script to rename files
Solved/Closed
gbr00435
Posts
1
Registration date
Wednesday 20 August 2008
Status
Member
Last seen
21 August 2008
-
21 Aug 2008 à 11:29
rajesh kanna - 3 Jun 2014 à 11:50
rajesh kanna - 3 Jun 2014 à 11:50
Related:
- Dos rename file
- Rename dos - Best answers
- Rename file dos - Best answers
- Rename lg tv - Guide
- Dvi file - Guide
- Lg tv rename inputs ✓ - Smart TV Forum
- Ms dos commands - Guide
- Send outlook email from dos batch file ✓ - Internet & Social Networks Forum
27 Mar 2009 à 17:13
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
14 Jul 2009 à 01:02
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