| 
				 Re: OT: Need help with renaming files in XP 
 Have you tried using a FOR loop?
 test.bat:
 
 @echo OFF
 for %%F in (*.*) do echo %%F
 
 for /?  also gives a lot of information about how to deal with deliminators, tokens and such.  You should be able to parse it out.
 |