web-dev-qa-db-ja.com

PowerShellで空のサブフォルダーを削除するにはどうすればよいですか?

エンドユーザー向けの「ジャンクドロワー」であるシェアを持っています。必要に応じて、フォルダやサブフォルダを作成できます。 31日以上経過して作成されたファイルを削除するスクリプトを実装する必要があります。

私はそれをPowershellから始めました。空になったサブフォルダーを削除して、ファイル削除スクリプトをフォローアップする必要があります。サブフォルダーがネストされているため、ファイルが空であるが、その下にファイルを含むサブフォルダーがあるサブフォルダーは削除しないようにする必要があります。

例えば:

  • FILE3aは10日経過しています。 FILE3は45日経過しています。
  • 30日以上経過したファイルを削除する構造をクリーンアップし、空のサブフォルダーを削除します。
C:\Junk\subfolder1a\subfolder2a\FILE3a

C:\Junk\subfolder1a\subfolder2a\subfolder3a

C:\Junk\subfolder1a\subfolder2B\FILE3b

望ましい結果:

  • 削除:FILE3bsubfolder2Bsubfolder3a
  • 残す:subfolder1asubfolder2aFILE3a

ファイルを再帰的にクリーンアップできます。 subfolder1aを削除せずにサブフォルダーをクリーンアップするにはどうすればよいですか? (「ジャンク」フォルダは常に残ります。)

28
ScriptSearcher

私はこれを2つのパスで行います。最初に古いファイルを削除してから、空のディレクトリを削除します。

Get-ChildItem -recurse | Where {!$_.PSIsContainer -and `
$_.LastWriteTime -lt (get-date).AddDays(-31)} | Remove-Item -whatif

Get-ChildItem -recurse | Where {$_.PSIsContainer -and `
@(Get-ChildItem -Lit $_.Fullname -r | Where {!$_.PSIsContainer}).Length -eq 0} |
Remove-Item -recurse -whatif

このタイプの操作は、PowerShellのネストされたパイプラインの能力をデモし、2番目のコマンドセットが示しています。ネストされたパイプラインを使用して、その下にファイルがないディレクトリがあるかどうかを再帰的に判断します。

43
Keith Hill

最初の答えの精神で、空のディレクトリを削除する最も簡単な方法は次のとおりです。

ls -recurse | where {!@(ls -force $_.fullname)} | rm -whatif

-forceフラグは、ディレクトリに.svnのような隠しフォルダーがある場合に必要です。

9
Bogdan Calmac

これは、ネストされた空のディレクトリの問題を回避する親ディレクトリの前にサブディレクトリをソートします。

dir -Directory -Recurse |
    %{ $_.FullName} |
    sort -Descending |
    where { !@(ls -force $_) } |
    rm -WhatIf
4
Doug Coburn

最後のものに追加:

while (Get-ChildItem $StartingPoint -recurse | where {!@(Get-ChildItem -force $_.fullname)} | Test-Path) {
    Get-ChildItem $StartingPoint -recurse | where {!@(Get-ChildItem -force $_.fullname)} | Remove-Item
}

これにより、$ StartingPointの下にある空のフォルダーを削除するために検索を続行する場所が完成します。

3
bbo

エンタープライズ向けの機能が必要でした。これが私の見解です。

私は他の回答のコードから始め、次に、元のフォルダーリスト(フォルダーごとのファイル数を含む)を含むJSONファイルを追加しました。空のディレクトリを削除し、それらをログに記録しました。

https://Gist.github.com/yzorg/e92c5eb60e97b1d6381b

param (
    [switch]$Clear
)

# if you want to reload a previous file list
#$stat = ConvertFrom-Json (gc dir-cleanup-filecount-by-directory.json -join "`n")

if ($Clear) { 
    $stat = @() 
} elseif ($stat.Count -ne 0 -and (-not "$($stat[0].DirPath)".StartsWith($PWD.ProviderPath))) {
    Write-Warning "Path changed, clearing cached file list."
    Read-Host -Prompt 'Press -Enter-'
    $stat = @() 
}

$lineCount = 0
if ($stat.Count -eq 0) {
    $stat = gci -Recurse -Directory | %{  # -Exclude 'Visual Studio 2013' # test in 'Documents' folder

        if (++$lineCount % 100 -eq 0) { Write-Warning "file count $lineCount" }

        New-Object psobject -Property @{ 
            DirPath=$_.FullName; 
            DirPathLength=$_.FullName.Length;
            FileCount=($_ | gci -Force -File).Count; 
            DirCount=($_ | gci -Force -Directory).Count
        }
    }
    $stat | ConvertTo-Json | Out-File dir-cleanup-filecount-by-directory.json -Verbose
}

$delelteListTxt = 'dir-cleanup-emptydirs-{0}-{1}.txt' -f ((date -f s) -replace '[-:]','' -replace 'T','_'),$env:USERNAME

$stat | 
    ? FileCount -eq 0 | 
    sort -property @{Expression="DirPathLength";Descending=$true}, @{Expression="DirPath";Descending=$false} |
    select -ExpandProperty DirPath | #-First 10 | 
    ?{ @(gci $_ -Force).Count -eq 0 } | %{
        Remove-Item $_ -Verbose # -WhatIf  # uncomment to see the first pass of folders to be cleaned**
        $_ | Out-File -Append -Encoding utf8 $delelteListTxt
        sleep 0.1
    }

# ** - The list you'll see from -WhatIf isn't a complete list because parent folders
#      might also qualify after the first level is cleaned.  The -WhatIf list will 
#      show correct breath, which is what I want to see before running the command.
2
yzorg

30日以上経過したファイルを削除するには:

get-childitem -recurse |
    ? {$_.GetType() -match "FileInfo"} |
    ?{ $_.LastWriteTime -lt [datetime]::now.adddays(-30) }  |
    rm -whatif

(実際に実行するには、-whatifを削除するだけです。)

に続いて:

 get-childitem -recurse |
     ? {$_.GetType() -match "DirectoryInfo"} |
     ?{ $_.GetFiles().Count -eq 0 -and $_.GetDirectories().Count -eq 0 } |
     rm -whatif
2
John Weldon

これでうまくいきました。

$limit = (Get-Date).AddDays(-15) 

$path = "C:\Some\Path"

$limitより古いファイルを削除:

Get-ChildItem -Path $path -Recurse -Force | Where-Object { !$_.PSIsContainer -and $_.CreationTime -lt $limit } | Remove-Item -Force

古いファイルを削除した後に残された空のディレクトリを削除します。

Get-ChildItem -Path $path -Recurse -Force | Where-Object { $_.PSIsContainer -and (Get-ChildItem -Path $_.FullName -Recurse -Force | Where-Object { !$_.PSIsContainer }) -eq $null } | Remove-Item -Force -Recurse
1
ritikaadit2