I would like to ask for help in renaming files in given folder.

I would like to change characters "vol._" to "vol."

thanks for help

link|improve this question

54% accept rate
feedback

2 Answers

up vote 4 down vote accepted
 gci c:\folder_path | ? {$_.name -match 'vol._'} | 
     rename-item -newname {$_.name  -replace 'vol._','vol.'} -whatif

Take a look at the output and if everything works fine remove whatif switch

edit. If you need to rename files even in subfolders you have to apply a little change

 gci c:\folder_path -rec | ? {!$_.psiscontainer -and $_.name -match 'vol._'} |
     rename-item -newname {$_.name  -replace 'vol._','vol.'} -whatif
link|improve this answer
there is an error: Unexpected token 'vol._' in expression or statement. – gruber Apr 2 '11 at 14:34
oh sorry everything is ok – gruber Apr 2 '11 at 14:40
1  
+1 for piping into Rename-Item and using scriptblock on -NewName. :-) – Keith Hill Apr 2 '11 at 16:56
feedback

What about:

gci c:\folderpath -include vol._* | rename-item -newname {$_.name -replace 'vol._', 'vol.'}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.