Answers for "powershell command rename files"

0

powershell replace and rename file name

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

Code answers related to "powershell command rename files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language