PowerShell: How do I recursively rename files in a folder
This is a great example of PowerShell goodness - an awesome one liner.
Get-ChildItem -File -Recurse | % { Rename-Item -Path $_.PSPath -NewName $_.Name.replace("<FindValue>","<NewValue>")}
Get-ChildItem -File -Recurse | % { Rename-Item -Path $_.PSPath -NewName $_.Name.replace("<FindValue>","<NewValue>")}
Comments
Post a Comment