Delete empty files and folders using PowerShell Script

Опубликовано: 12 Ноябрь 2021
на канале: Invisible Pandu
172
14

#bestinformation #viralvideo #computerinformation #information #knowledge #computer_knowledge #best_information #good_information #powershellscripting

👉Get list of Empty folder using Powershell Script:    • How to get the list of empty folders ...  

👉Note: This Script will delete Empty Files and Folders!
👉Copy Script:
gci "C:\Users\pc\Desktop\Demo" -Recurse | foreach {
if($_.Length -eq 0) {
Write-Output "Removing Empty Files $($_.FullName)"
$_.FullName | Remove-Item -Force }
if($_.psiscontainer -eq $true) {
if((gci $_.FullName) -eq $null){
Write-Output "Removing Empty Folder $($_.FullName)"
$_.FullName | Remove-Item -Force } }}


Смотрите видео Delete empty files and folders using PowerShell Script онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Invisible Pandu 12 Ноябрь 2021, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 172 раз и оно понравилось 14 людям.