Created
January 28, 2016 13:17
-
-
Save timgaunt/f1990598877f2f5e0b85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ago = 7; | |
$now = Get-Date; | |
$limit = $now.AddDays($ago * -1) | |
$filename = "UmbracoTraceLog.txt.*" | |
$path = "D:\Websites\" | |
# Delete files older than the $limit. | |
Get-ChildItem -Path $path -Recurse -Force | Where-Object { !$_.PSIsContainer -and $_.LastwriteTime -lt $limit -and $_.name -like $filename } | Remove-Item -WhatIf | |
# Delete any empty directories left behind after deleting the old files. | |
Get-ChildItem -Path $path -Recurse -Force | Where-Object { $_.PSIsContainer -and (Get-ChildItem -Path $_.FullName -Recurse -Force | Where-Object { !$_.PSIsContainer }) -eq $null } | Remove-Item -WhatIf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment