PoshCode Archive  Artifact [5003c39464]

Artifact 5003c394643f40d006aef3dc722397b82aaa7890b74ad7d8961f20039bb27920:

  • File AutoArchive.ps1 — part of check-in [a5c6cc2fff] at 2018-06-10 13:12:21 on branch trunk — AutoArchive Script (user: ChristopheCREMON size: 2861)

# encoding: ascii
# api: powershell
# title: AutoArchive
# description: AutoArchive Script
# version: 0.1
# type: script
# author: ChristopheCREMON
# license: CC0
# x-poshcode-id: 2563
# x-archived: 2011-03-24T17:36:22
# x-published: 2011-03-15T12:28:00
#
# - You will need the PowerZip module available at : http://powershell.codeplex.com
# A powerful script that lets you automatically zip and delete old files (for example old IIS log files)
#
# AutoArchive PowerShell Script
# http://powershell.codeplex.com

param (
	[ValidateNotNullOrEmpty()]
		[Parameter(
    		Mandatory = $true)
    	]
			[string] $Source,
		[int] $RetentionDays,
		[array] $Include,
		[array] $Exclude,
		[switch] $Recurse )

# Load Zip Module
Import-Module PowerZip

# Check source presence
if ( -not ( Test-Path -Path "$Source" -ErrorAction SilentlyContinue ) )
{
	throw "ERROR : Source not found { $Source }"
}

# Set variables
$DirectoryTimeStamp = (Get-Date).ToString("yyyy\\MM")
$ArchiveTimeStamp = (Get-Date).ToString("yyyyMMddHHmmss")
if ( $Recurse -eq $true ) { $RecurseArgument = "-Recurse" }
if ( $Include )
{
	$Include = $Include -join ","
	$IncludeArgument = "-Include $Include"
	$Source = $Source+"\*"
}
$Exclude += @("*.zip")
$Exclude = $Exclude -join ","
$ExcludeArgument = "-Exclude $Exclude"

$GetCommand = "Get-ChildItem -Path '$Source' $IncludeArgument $ExcludeArgument $RecurseArgument"

Invoke-Expression -Command $GetCommand | Where-Object { ( $_.LastWriteTime -lt (Get-Date).AddDays(-$RetentionDays) ) -and ( $_.psIsContainer -eq $false ) -and ( $_ -cnotmatch "\\_AutoArchive_\\" ) } | ForEach-Object {
	$ArchiveDirectory = $_.DirectoryName
	$ArchiveDirectory = "$ArchiveDirectory\_AutoArchive_\$DirectoryTimeStamp"
	Write-Output "Moving { $($_.FullName) } to { $ArchiveDirectory } ..."
	$DirectoryToZipArray += @($ArchiveDirectory)
	if ( -not ( Test-Path -Path "$ArchiveDirectory" -ErrorAction SilentlyContinue ) )
	{
		New-Item -ItemType Directory -Path "$ArchiveDirectory" | Out-Null
		if ( $? -ne $true )
		{
			$ErrorsArray += @("! Unable to create directory {$ArchiveDirectory}")
		}
	}
	Move-Item -Path $_.FullName -Destination "$ArchiveDirectory" -Force -ErrorAction SilentlyContinue
	if ( $? -ne $true )
	{
		$ErrorsArray += @("! Unable to move file {$($_.FullName)}")
	}
}

foreach ( $DirectoryToZip in $DirectoryToZipArray | Sort-Object -Unique )
{
	Write-Output "Zipping { $DirectoryToZip } ..."
	$ZipFile = "$DirectoryToZip\$ArchiveTimeStamp.zip"
	$Zip = New-Zip -Source "$DirectoryToZip" -ZipFile "$ZipFile" -DeleteAfterZip -Exclude "*.zip"
	if ( $? -ne $true )
	{
		$ErrorsArray += @("! Unable to zip directory {$DirectoryToZip}")
	}
}

if ( $ErrorsArray )
{
	Write-Output "`n[ ERRORS OCCURED ]"
	$ErrorsArray
	return $false
}
else
{
	return $true
}