| User: editor -- 2008-07-09 |
| Hits: 209 |
| Type: Batch file rename |
| Search all Batch file rename examples |
| Description: |
| How to batch rename files from format like 'file.002' to '002_file'? |
| Answer: |
| Hint: You need to Download and install "Replace Pioneer" to finish following steps. |
| 1. open menu 'Tools->Batch Runner' 2. click 'Pick files' select multiple files 3. sort these files by name or date or others, by clicking different column titles. 4. change 'set output filename' entry from ${FILENAME} to: and click 'Apply' at right. 5. click 'Rename', finish. Note: ${FILENAME}{-3,-1} means last 3 chars of ${FILENAME} ${FILENAME}{1,-5} means 1 to -5 chars of ${FILENAME}(-5 means the 5th char count from end) There are many ways to change filename flexibly: #.jpg --- 1.jpg, 2.jpg, ... ##.jpg --- 01.jpg, 02.jpg, ... ###.jpg --- 001.jpg, 002.jpg, ... @.jpg --- a.jpg, b.jpg, ... ${BASE}###.jpg --- add 3 digit sequence number ${BASE}{1,3}.jpg --- keep 1 to 3 chars of filename ${BASE}{-3,-1}.jpg --- keep last 3 chars of filename ${BASE}{replace,'a','b'}.jpg --- replace a with b ${BASE}{replace,'_',''}.jpg ---remove '_' ... |
Similar Examples: |
| How to batch rename files from format like TEST_2008_06_22_ABC.TXT to 20080622.TXT? (67%) How to batch rename files with the first line of file content as new file name? (67%) How to batch rename files with the first word of file contents? (64%) How to batch rename files from format like NAME-YEAR.mp3 to YEAR-NAME.mp3? (63%) How to batch rename text files by adding the value of file content to filename? (62%) How to batch rename files from format ABC12.txt to ABC0012.txt? (62%) Is there a way to batch rename files with the first line of the file content? (62%) How to batch rename files by replacing all initial letter of 'S' with 'N' ? (61%) |
Check Demo of Batch file rename |