Find & Replace

The Find & Replace feature lets you search for specific text within filenames and replace it with something else. It works on all selected files at once, making it easy to fix naming mistakes or update file names in bulk.

How It Works

  1. Select one or more files in Windows Explorer.
  2. Right-click and choose FilerFrog → Rename → Find & Replace.
  3. In the Find field, type the text you want to search for.
  4. In the Replace field, type the text you want to use instead.
  5. Click OK to apply the rename.
Example: You have a file named uselessFile.PDF. Enter useless in the Find field and Important in the Replace field. The file is renamed to ImportantFile.PDF.

Options

Tip: Leave the Replace field empty to simply remove the matched text from all filenames.

Common Use Cases

Scenario

You downloaded a batch of photos and each filename starts with IMG_. Select all the photos, open Find & Replace, enter IMG_ in the Find field, and leave the Replace field empty. Every file will have the IMG_ prefix removed instantly.

Case Insensitive Matching

Check the Case insensitive option to match text regardless of capitalization. For example, searching for "photo" will match "Photo", "PHOTO", and "photo".

Regular Expressions

Check Use regular expressions to use powerful pattern matching. This lets you match complex patterns in filenames.

Examples:
Find \d+ → matches any sequence of digits
Find IMG_(\d+), Replace Photo_$1 → renames "IMG_001.jpg" to "Photo_001.jpg"
Find \s+, Replace _ → replaces spaces with underscores