0

I have 1900 files that I'd like to edit their name. The files contain the title of the file but also have unneeded characters that I'd like to remove. For example, one file might be titled Hello [U].txt.

Another might be Bye [U].txt. Is there a program that can remove that [U]?

Thanks!

An Dorfer
  • 1,178

3 Answers3

1

I believe this program (Bulk Rename Utility) can help you.

See:

  1. enter image description here

  2. enter image description here

stderr
  • 10,569
  • 2
  • 36
  • 50
0
dir |
Where-Object { $_.name.Contains("[U]") } |
RenameItem -NewName { $_.name -replace "[U]","" }

give this a shot written for powershell

Lexi
  • 1
0

Total Commander has ability to do that: select the files, press Ctrl+M and you should be able to change names of many files in the way you need.

pbies
  • 3,550