29

エンドユーザー向けの「ジャンクドロワー」である共有があります。必要に応じてフォルダーとサブフォルダーを作成できます。31 日以上前に作成されたファイルを削除するスクリプトを実装する必要があります。

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

例えば:

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

C:\Junk\subfolder1a\subfolder2a\subfolder3a

C:\Junk\subfolder1a\subfolder2B\FILE3b

望ましい結果:

  • 削除: FILE3b, subfolder2B& subfolder3a.
  • 残す: subfolder1asubfolder2a、およびFILE3a

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

4

7 に答える 7

46

私はこれを2つのパスで行います-最初に古いファイルを削除し、次に空のdirsを削除します:

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番目のセットが示すものです。ネストされたパイプラインを使用して、ディレクトリの下にファイルがないかどうかを再帰的に判別します。

于 2009-10-15T22:56:09.000 に答える
9

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

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

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

于 2010-11-20T18:29:46.267 に答える
5

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

dir -Directory -Recurse |
    %{ $_.FullName} |
    sort -Descending |
    where { !@(ls -force $_) } |
    rm -WhatIf
于 2015-07-31T22:20:24.913 に答える
3

最後に追加します:

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

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

于 2012-05-15T14:47:38.527 に答える
2

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

他の回答のコードから始めて、元のフォルダー リスト (フォルダーごとのファイル数を含む) を含む 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.
于 2014-03-14T16:47:54.097 に答える
2

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
于 2009-10-15T22:37:48.237 に答える
1

これは私にとってはうまくいきました。

$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
于 2016-08-17T13:13:03.287 に答える