Renamer FAQs
A:
With version 4 we decided it was time to give Renamer4Mac not just a shiny new interface but also a simpler, crisper name. We believe that Renamer captures the essence of our application: an elegant, easy-to-use file renamer.
A:
To make renaming as fast as possible, Renamer by default uses a system rename function. Although fast, this has the disadvantage that it causes icons of the renamed files (for example those on your Desktop) to be rearranged.
If you want to keep your icons arranged as they are:
- Choose Renamer > Preferences
- From "Rename with" choose "Finder"
Note that for renaming many files this is noticeably slower than the System option.
A:
To rename hidden files you first need to get Finder to show them:
- In Finder go to the Applications > Utilities folder
- Double-click Terminal.app
- Type the following and then press return
defaults write com.apple.finder AppleShowAllFiles -bool true
- Type the following and then press return
killall Finder
Now you can rename your hidden files in Renamer:
- Drag in the hidden files now visible in Finder
- Make sure "Filename and Suffix" is selected from Renamer's action menu
- Rename files as usual
Once you're finished you can restore Finder to hide hidden files again:
- Open Terminal.app again as described in Steps 1-2 in the first paragraph
- Type the following and then press return
defaults write com.apple.finder AppleShowAllFiles -bool false
A:
Yes.
For Renamer version 4.0.1 and later you can capture groups of a string with (...) and then backreference the groups with $1, $2, ... where 1 is the first group and so on.
For example if you want to rename files "img_001.jpg", "img_002.jpg", "img_00n.jpg" to "01 - Photo.jpg", "02 - Photo.jpg", 0n - Photo.jpg":
- Click Search & Replace
- In "Search for:" enter "img_0(\d\d)"
- In "Replace with:" enter "\1 - Photo"
- Select the "Regular expression" tick box
- Select "Name only"
Note: for Renamer version 4.0 and earlier you can backreference with \1, \2, ...