Mass File Renaming Program?


Status
Not open for further replies.
V

vince123123

Guest
Hi! Now I am using Nikon View to transfer my pics from the CF cards as it can auto rename my files from DSCN001 and DSCN002 to My photo session in Pahang 001, My photo session in Pahang 002 etc.

anyone knows of any other programs can do such a thing so that I wont have to be reliant on Nikon View just for a simple renaming feature?

thanks
 

Ca try "ACD See", it has a batch rename function in the browse option, plus it is a very good image viewer program.
 

Is there a program for mass compression ?

I would shot in 1600x1200 mode but it will take too long to display on webpage. Need to squeeze / concert to lower resolution mode, AFTER the picture is edited.
 

Originally posted by Lensman
Is there a program for mass compression ?

I would shot in 1600x1200 mode but it will take too long to display on webpage. Need to squeeze / concert to lower resolution mode, AFTER the picture is edited.

Try IrfanView as well. Free. :)

Regards
CK
 

Originally posted by ckiang
Try IrfanView as well. Free. :)

Regards
CK

I have problems downloading. Can you direct me to one with easier download.
Thanks CK.
 

With WinXP or ACDSee, you can rename all file by

1. Select all images,
2. F2 key
3. rename to the name use want.

Hope this will help.
 

If you have cygwin or a bash shell,

#!/bin/bash
for i in DSCN*
do
j=`echo $i | sed -e 's/DSCN/Pahang/g'`
mv $i $j
done
 

Status
Not open for further replies.