Windows 에서 폴더 및 파일 관리시 비어 있는 폴더를 삭제 하고 싶은 경우가 있습니다.
그래서 저는 간단하게 빈폴더를 삭제하는 Powershell script 를 만들어서 사용하곤 합니다.
아래 소개한 powershell profile 에 작성해서 사용하면 조금더 편리하게 사용 할 수 있습니다.
http://iamaman.tistory.com/1017
스크립트는 아래와 같습니다. 그냥 하위 폴더는 그냥 두고 현재 폴더만 확인하고 싶은 경우와 빈 폴더만 확인하고 싶은 경우를 위해 recurse 와 Delete 를 옵션으로 줬습니다.
function emptyFolderFind
{
param
(
$folder,
[Switch]$Recurse,
[Switch]$Delete
)
if($Recurse)
{
$a = Get-ChildItem $folder -Recurse | Where-Object {$_.PSIsContainer -eq $True}
}
else
{
$a = Get-ChildItem $folder | Where-Object {$_.PSIsContainer -eq $True}
}
$b = $a | Where-Object {($_.GetFiles().Count -eq 0) -and ($_.GetDirectories().Count -eq 0)}
$b | Select-Object FullName
if ($Delete -and $b)
{
$b | Remove-Item -Force
Write-Host "Empty folder Deleted!!"
}
}
E:\workspace 하위의 폴더 중 빈폴더를 삭제 하기 위해서는 아래와 같은 명령어를 사용합니다.
emptyFolderFind "E:\workspace" -Delete
하위 폴더도 검색하기 위해서는 Recurse 옵션을 주고 아래와 같이 Recurse 하게 검색 및 삭제 할 수 있습니다.
emptyFolderFind "E:\workspace" -Delete -Recurse
'programming language > powershell' 카테고리의 다른 글
Powershell v5.0 설치 (0) | 2017.02.19 |
---|---|
Powershell 지난 주 이전의 파일 지우기 (0) | 2017.02.18 |
Powershell 사용하여 Symbolic link 를 만드는 방법 (0) | 2017.02.10 |
Powershell 에서 문자에 대한 ascii 값 확인 A~Z 리스트 구하기 (0) | 2016.10.18 |
Powershell 에서 Outlook 으로 메일 보내기 (0) | 2016.03.06 |
Powershell 를 활용한 Network Drive 찾기 (0) | 2016.02.16 |
Powershell 매월 X 째 주 Y요일 찾기 (0) | 2016.01.19 |
Powershell 에서 exe 실행 시 끝날 때 까지 기다리게 하기 (0) | 2016.01.04 |
댓글