Rename File Powershell

[Solved] Rename File Powershell | 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 rename file powershell

Code Explorer Popular Question For Perl