“PowerShell usuń puste foldery” Kod odpowiedzi

PowerShell zdobądź puste foldery

Get-ChildItem "C:\Scripts" -Recurse -Directory | Where-Object {!$_.GetFileSystemInfos().Count} | Select-Object FullName
Troubled Toad

Folder Usuń PowerShell

Remove-Item 'D:\temp\Test Folder1'
DevPedrada

PowerShell, jak usunąć tylko puste kierunki

# A script block (anonymous function) that will remove empty folders
# under a root folder, using tail-recursion to ensure that it only
# walks the folder tree once. -Force is used to be able to process
# hidden files/folders as well.
$tailRecursion = {
    param(
        $Path
    )
    foreach ($childDirectory in Get-ChildItem -Force -LiteralPath $Path -Directory) {
        & $tailRecursion -Path $childDirectory.FullName
    }
    $currentChildren = Get-ChildItem -Force -LiteralPath $Path
    $isEmpty = $currentChildren -eq $null
    if ($isEmpty) {
        Write-Verbose "Removing empty folder at path '${Path}'." -Verbose
        Remove-Item -Force -LiteralPath $Path
    }
}
I'm Just Blue

PowerShell usuń puste foldery

$tdc="C:\a\c\d"
$dirs = gci $tdc -directory -recurse | Where { (gci $_.fullName).count -eq 0 } | select -expandproperty FullName
$dirs | Foreach-Object { Remove-Item $_ }
OldyGuy

Odpowiedzi podobne do “PowerShell usuń puste foldery”

Pytania podobne do “PowerShell usuń puste foldery”

Więcej pokrewnych odpowiedzi na “PowerShell usuń puste foldery” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu