I have a digital camera and it names it’s files DSCNxxxx.jpg. I want to rename these files to something that has some meaning to me. I’m looking for a file or program that would allow me to rename a group of files by specifying a set of say 5 or 6 charactors and automatically sequence the remainder. Such as change DSCN0001.jpg through DSCN0099.jpg to NWS00001.jpg etc. No requirement to limit file names to 8+3.
From a DOS prompt you can do it with the REN command. To accomplish your example, use:
REN DSCN*.jpg NWS0*.jpg
This would rename all files that start with DSCN, keeping intact the characters that are replaced by the asterisks. The reason that I added the “0” to the new name is because you had an extra one in your example. It could just have easily said NWS*.jpg. The only difference is the file name would have been 7 characters (nothing wrong with that).