Search found 2 matches
- 29 Jun 2019 07:32
- Forum: DOS Batch Forum
- Topic: JREN.BAT v2.8 - Rename files/folders using regular expressions
- Replies: 78
- Views: 199438
Re: JREN.BAT v2.8 - Rename files/folders using regular expressions
Thanks. I managed to rename. The problem I have now is that special characters in new filenames are not copied correctly. CSV file is in UTF-8, when I open it every character is displayed OK but when files are renamed they are not, any way to solve this?
- 26 Jun 2019 04:44
- Forum: DOS Batch Forum
- Topic: JREN.BAT v2.8 - Rename files/folders using regular expressions
- Replies: 78
- Views: 199438
Re: JREN.BAT v2.8 - Rename files/folders using regular expressions
Hi, I have CSV list with 2 columns where first column is new-filename and second column is present filename. Files that I need to rename are jpg without extension. CSV is as this: image 1.jpg,1a02fb0a image 2.jpg,43beb7e8 image 3.jpg,388f5181 When I tried: for /f "delims=; tokens=1,2" %A in (1.csv) ...