Powershell Rename File

[Solved] Powershell Rename File | Perl - Code Explorer | yomemimo.com
Question : powershell replace and rename file name

Answered by : worried-wren-0kic8xifvxph

Get-ChildItem -Path "C:\All" -Filter "*.pdf" | Rename-Item -NewName { $_.BaseName.Replace(".","_") + $_.Extension }

Source : https://stackoverflow.com/questions/43090156/replace-with-in-file-name | Last Update : Wed, 03 Mar 21

Answers related to powershell rename file

Code Explorer Popular Question For Perl