wilson's story

PowerShell 에서 확장자 일괄 변경 본문

My information

PowerShell 에서 확장자 일괄 변경

wilson 2020. 12. 18. 10:05
반응형

윈도우의 PowerShell 에서 파일의 확장자를 일괄로 변경하고자 할 때 사용

PowerShell에서 해당 폴더 위치로 이동

 

확장자 .AAA를 .BBB로 변경할 때 

get-childItem *.AAA -Recurse | Rename-Item -NewName { $_.Name -replace ".AAA", '.BBB' }

 

반응형