Suppose I have the files as below

C
|_tmp
    |_a.txt
    |_b.txt
    |_c.txt

I use rename *.txt 20110822*.txt, but not works.
Could anyone please suggest a method to append date in front of the files, thanks

link|improve this question

80% accept rate
feedback

1 Answer

up vote 0 down vote accepted
for %%i in (*.txt) do rename %%i 20110822%%i

Note that the double-percent-signs are only needed in a batch file. From an interactive command line, use only one percent-sign.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.