I'm attempting to rename a bunch of mp3's (as my portable player won't play
them in order properly)
From
1-name.mp3
to
01-name.mp3
Obviously, I'm only looking to do this for tracks 1-9
My problem is that
ren ?-* 0?-*.mp3
gives me a "file in use" error.
Ok: workaround, run it individually for ?=1 to 9
(ie)
ren 1-* 01-*.mp3
ren 2-* 02-*.mp3
(etc)
This however overwrites the first letters of the name (and drops the suffix
if the .mp3 isn't appended)
ie from 1-name.mp3 to 01-ame.mp3
I'm obviously doing something simple (I hope

wrong: can anyone assist in
making this work properly?
OS's: Win98 and XP
Oh: if possible, any thoughts on how I can get this to run in subfolders of
the parent "music" folder?
Any and all pointers _very_ welcomed!
Thanks
-P