I have a very big job to do.

I have about 930 pictures which are called like:

  • 5210841 Tuinset Senator.jpg
  • 5210898 Traptrede Premium.jpg

etc.

I'm looking for a way to rename these pictures, without losing the number part.

So for the first one, its name would be:

  • 5210841.jpg

and the second

  • 5210898.jpg

Can you guys think about a program which can do this job?

It's for a Windows platform.

link|improve this question

79% accept rate
it's for windows – Chris Feb 28 '10 at 18:20
Found it, File Renamer Basic does the job, You can choose from which character you want to delete the rest. I set it from 8 to 255 – Chris Feb 28 '10 at 18:44
feedback

4 Answers

up vote 5 down vote accepted

Use Total Commander - it's shareware (but the only limitation is a nag screen at startup). It has a very powerful batch rename option and is a great file manager overall.

link|improve this answer
feedback

As long as all the numbers are the same amount of digits like the example then the standard Windows rename should do it:

C:\FolderOfPictures>ren *.jpg ???????.*

If you need the first 10 characters like the question title, use 10 question marks. One for each character you want to keep. :)

link|improve this answer
feedback

With the rename utility you can do:

rename 's/^(\d*)(.*)\.jpg/$1.jpg/' *.jpg

Don't know whether this exists on windows though.

link|improve this answer
feedback

Found it, File Renamer Basic does the job, You can choose from which character you want to delete the rest. I set it from 8 to 255

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.