https://github.com/thomastjdev/windowsbatch_renamechar
Windows batch for rename chars in filenames
https://github.com/thomastjdev/windowsbatch_renamechar
Last synced: 9 months ago
JSON representation
Windows batch for rename chars in filenames
- Host: GitHub
- URL: https://github.com/thomastjdev/windowsbatch_renamechar
- Owner: ThomasTJdev
- Created: 2017-01-21T20:31:23.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-21T20:36:06.000Z (about 9 years ago)
- Last Synced: 2025-03-21T20:16:08.084Z (12 months ago)
- Language: Batchfile
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changeCharFilename.bat
Awesome Lists containing this project
README
# Rename chars in filenames
This batch script rename filenames. The batch script needs to be placed in the same folder as the files, which it is checking.
## Config
Change the code accordingly to your needs. The example below has 4 renaming criterias. `+©` will be changed to `A`, etc.
```
REM Replace statements:
SET str=!str:+©=A!
SET str=!str:+ÿ=d!
SET str=!str:+ª=C!
SET str=!str:W=!
```
## Run
Navigate to folder in cmd.exe and run the file `changeCharFilename.bat`