Renaming multiple files in DOS

Written by kishore

Hi All,
I am in a situation like this:
I have close to 100 files ordered like this:
test1.txt
test2.txt
test3.txt


test99.txt

I need to rename those files like this:
track1.txt
track2.txt


track99.txt
i.e. trackNN.txt

Of course, with windows, I can rename them whatever I like one by one.

But with commad prompt (DOS command) how do I do that?

ren test*.txt track*.txt did not work
I want to change the alphabet part, leaving the numerals intact.

Is it possible?

Thank you for your time.

Best,
T.

Original post:
Renaming multiple files in DOS

Feb
10

C++ exception handling (Newbie Question)

Written by kishore

Sorry folks, I know if I read a book on C++ I should find an answer to this question. But I am looking for a quick answer:

Code:

func() {

Feb
08