I created an Auto HotKey script which helps you to copy and paste a file-name from one type of file to another. Useful if you need to change the names of a lot of files.
How it works: In the demo, I have a folder of PNG files on the left, and a folder of JPG files on the right. When the script is run in Windows, you then follow these instructions:
Click on a file on the left. Press NumberPad1. (The filename is copied).
Click on a file on the right. Press NumberPad2. (the filename is pasted).
So, it's an easy way of changing file-names if you have LOTS to do.
My script is below if you'd like to copy/paste it.
SetKeyDelay, 200
numpad1::
send, {f2}
sleep, 500
send, {ctrl down}c{ctrl up}
return
numpad2::
send, {f2}
sleep, 500
send, {ctrl down}v{ctrl up}
return