Rename Button

Hi.
I've looked at the commands to use in to create a rename button, and I've even installed a button using "PATTERN" but I can't decipher what code to use to add a string of characters to the beginning of a filename.

Help?

Thanks

Here's a simple rename button command I use to rename selected files by prepending "old-" to the beginning of each.

Rename PATTERN * TO old-*

This will add "Moo " to the start of all selected items:

Rename PATTERN="*" TO="Moo *"

Oops, replied at the same time as John. :slight_smile: Both commands do the same sort of thing.

so PATTERN is used here too
got it.
thanks sirs!