Author Topic: file rename concatenating  (Read 2177 times)

Offline ricop

  • Newcomer
  • *
  • Posts: 2
    • View Profile
    • Pelaez Photographyty
file rename concatenating
« on: September 20, 2008, 12:04:19 AM »
Hi,

Is it possible to rename photos by concatenating a fix length of characters?

For example, if have these photos:

wedding_001
wedding_002
..
wedding_999


I want to rename them such that the first few characters get removed.  This is the result filename that I want to have:
001
002
..
999

Thanks,
Rico

Offline Kirk Baker

  • Senior Software Engineer
  • Camera Bits Staff
  • Superhero Member
  • *****
  • Posts: 24767
    • View Profile
    • Camera Bits, Inc.
Re: file rename concatenating
« Reply #1 on: September 20, 2008, 06:20:29 AM »
Rico,

Is it possible to rename photos by concatenating a fix length of characters?

For example, if have these photos:

wedding_001
wedding_002
..
wedding_999


I want to rename them such that the first few characters get removed.  This is the result filename that I want to have:
001
002
..
999

Sure.  Use the following as your renaming string:

{filenamebase:-3}

-Kirk

Offline ricop

  • Newcomer
  • *
  • Posts: 2
    • View Profile
    • Pelaez Photographyty
Re: file rename concatenating
« Reply #2 on: September 20, 2008, 11:24:57 AM »
Thanks Kirk! This is exactly what I wanted.