Utoljára aktív 1725105003

rcaldous's Avatar rcaldous gist felülvizsgálása 1725105003. Revízióhoz ugrás

1 file changed, 5 insertions

deleteEmpty.ps1(fájl létrehozva)

@@ -0,0 +1,5 @@
1 + $LogPath = Read-Host 'Path to delete empty folders'
2 + Get-ChildItem -LiteralPath $LogPath -Force -Recurse | Where-Object {
3 + $_.PSIsContainer -and `
4 + @(Get-ChildItem -LiteralPath $_.Fullname -Force -Recurse | Where { -not $_.PSIsContainer }).Count -eq 0 } |
5 + Remove-Item -Recurse
Újabb Régebbi