[파워쉘]확장자 일괄변경# Script/Powershell2021. 7. 9. 18:03
Table of Contents
728x90
반응형
Get-ChildItem *.txt | Rename-Item -NewName {“$($_.BaseName).docx”}
Get-ChildItem *.txt | Rename-Item -NewName { $_.name -Replace ‘\.txt’,’.docx’ }
Get-ChildItem *.txt | foreach {rename-item -path $_ -newname “$($_.basename).docx”}
특정 경로에 파일확장자가 .txt인 파일들을 .docx로 변경해야할 경우 위 3가지 방법 중에 1개로 하면 됨.
첫번째 추천!
728x90
반응형
'# Script > Powershell' 카테고리의 다른 글
[파워쉘]install-module error (0) | 2022.04.26 |
---|---|
[파워쉘]base64 디코딩 (0) | 2022.01.18 |
[파워쉘]df처럼 용량 확인 (0) | 2021.04.12 |
[파워쉘]linux tail처럼 사용 (0) | 2021.04.09 |
[파워쉘]dumy file 생성 (0) | 2021.04.01 |
@다크쉐라빔 :: 다크쉐라빔의 주절주절
안녕하세요. 이곳은 IT위주의 잡다한 정보를 올려두는 개인 블로그입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!