Transforms whatever name a file arrived with into exactly the name you need. Four techniques, from simple to powerful.
Replaces the entire filename with a name you specify. Use when the file always needs the same name regardless of what it was called. Preserves the original extension if you don't include one.
Adds text at a position you choose without replacing the whole name.
| Field | What it does |
|---|---|
| Text to Insert | The text to add. |
| Position | Before — at the beginning. Prior to Extension — just before the extension (e.g. inserting _final turns news.mp3 into news_final.mp3). After — at the very end. |
Finds text in the filename and replaces it with something else. Leave Replace With blank to simply remove the found text.
Full sed regular expression power for complex transformations. Enter a substitution expression like s/old/new/g.
Type a sample filename and Fetchit! shows you what the output would look like before you go live. Use it.