Replace Pioneer Home   All Examples   Free Download

 New request --free  RSS: Replace Pioneer Examples

198.Batch file rename -- Is there any way that I can rename all my files by changing first letter to upper case?

User: editor -- 2008-06-22          << 197  199 >>
Hits: 3588
Type: Batch file rename   
Search all Batch file rename examples
Description:
Is there any way that I can rename all my files by changing first letter to upper case?
Answer:
Hint: You need to Download and install "Replace Pioneer" on windows platform 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}{ucfirst} means change the first character of filename to uppercase. Actually you can use any perl function here. 
 
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 '_' 
... 
 
For detail, please search ${FILENAME} at: 
http://www.mind-pioneer.com/replace/help/Batch_File_List_Operations.html

Screenshot 1:  Batch_Runner_Window


Similar Examples:
Is there a way to batch rename files with the first line of the file content? (61%)
How to rename files by getting the first letter for specified words? (58%)
How to batch rename files by changing specified part separated by dash? (58%)
Is there a way to batch rename files by capitalizing each word?  (56%)
How to rename all files by adding a letter 'x' behind each filename? (56%)
How to rename all the files by adding the file size after filename? (55%)
Is there a way to batch rename files with all letters reversed, like abcd.txt to dcba.txt? (55%)
How to batch rename files by removing first 3 characters of filename? (55%)

Check Demo of Batch file rename
Keywords:
uppercase  first letter to upper case  ucfirst  first letter  perl  upper  upper case  keep last  first character  help  change the first character to upper case  perl change the first character to upper  rename all files first letter uppercase  changing the output of date to rename a file  first character uppercase  first letter uppercase  remove first character rename file  remove last 3 character from multiple file