how to make new file names in reverse order?

Daneinbalto

Established
Local time
6:58 AM
Joined
Feb 11, 2009
Messages
85
I shoot color film and have my negatives scanned at the lab. Unfortunately, they scan the negatives in the direction from frame 36 to frame 1, so when they on put them on the CD, the files are numbered in reverse chronological order. The file names are very long, e.g. 1309857801.jpg, 1309857802.jpg, etc.

I would like to rename the files so that their numbering is in correct chronological order. Of course, I could do this manually, but is there an easy automated way of doing this?

I'm using Photoshop CS2 on a Windows XP platform. Although I don't think it will be of use in this case, I mention that I also have Canon DPP loaded.
 
Get tcl, cygwin, etc. and script it. For example with cygwin:

#!/bin/sh
j=36
mkdir -p new_files
for i in *.jpg
do
cp $i new_files/$j.jpg
j=`echo "$j - 1" | bc`
done

:)
 
The following may work
1. Copy files to Folder on HD
2 Go to folder via Bridge
3 Choose Sort File Name Descending
4 Select all and rename.
 
ACDSee Pro has a very easy to use interface and renaming/renumbering files in batch processing is a breeze.
 
Back
Top Bottom