I need to remove the first character (which is always "_") from all filenames in a folder.
I'm currently using this command: ren _*.txt *.txt But it doesn't work.
However, if I run ren _*.txt A*.txt it perfectly works, but it is not what I want.
|
feedback
|
|
again, try powershell ;) Run this in your desired directory:
Explanation:
- gci *.txt collects all *.txt-files in the actual directory. | |||||||||||
feedback
|
|
If you want to avoid having to write anything, try the Bulk Rename Utility. The interface can be quite scary at first but just have a play around with it and you'll see it's not actually hard to use at all. | |||
|
feedback
|