Advertisement
Djentacodic

New-Archive.ps1

Mar 10th, 2024 (edited)
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 4.57 KB | Source Code | 0 0
  1. Function New-Archive {
  2. <#
  3. .DESCRIPTION
  4. Creates a ZIP archive.
  5. #>
  6.     [CmdletBinding(DefaultParameterSetName = 'ByParam')]
  7.     Param(
  8.         [Parameter(Mandatory, ParameterSetName = 'ByParam', Position = 0)]
  9.         [ValidateScript({Test-Path -Path $_ -PathType Container})]
  10.         [String]$Path,
  11.         [Parameter(Mandatory, ParameterSetName = 'ByPipe', ValueFromPipeline)]
  12.         [Object[]]$InputObject,
  13.         [Parameter(Mandatory, ParameterSetName = 'ByParam', Position = 1)]
  14.         [Parameter(Mandatory, ParameterSetName = 'ByPipe', Position = 0)]
  15.         [ValidateScript({Test-Path -Path (Split-Path -Path $_ -Parent) -PathType Container})]
  16.         [String]$ArchivePath,
  17.         [Parameter(ParameterSetName = 'ByParam')]
  18.         [String]$Filter = "*",
  19.         [Parameter(ParameterSetName = 'ByParam')]
  20.         [String[]]$Include = "",
  21.         [Parameter(ParameterSetName = 'ByParam')]
  22.         [String[]]$Exclude = "",
  23.         [Parameter(ParameterSetName = 'ByParam')]
  24.         [Switch]$Recurse,
  25.         [Parameter(ParameterSetName = 'ByParam')]
  26.         [Parameter(ParameterSetName = 'ByPipe')]
  27.         [ArgumentCompleter({
  28.             Add-Type -AssemblyName 'System.IO.Compression.FileSystem'
  29.             [enum]::GetNames([System.IO.Compression.CompressionLevel])
  30.         })]
  31.         [ValidateScript({
  32.             Add-Type -Assembly 'System.IO.Compression.FileSystem'
  33.             $null -ne [System.IO.Compression.CompressionLevel]::$_
  34.         })]
  35.         [System.IO.Compression.CompressionLevel]$CompressionLevel = 'Optimal',
  36.         [Parameter(ParameterSetName = 'ByParam')]
  37.         [Parameter(ParameterSetName = 'ByPipe')]
  38.         [Switch]$Force
  39.     )
  40.  
  41.     begin {
  42.        
  43.         Function Get-RelativePath {
  44.             Param(
  45.                 [Parameter(Mandatory)][String]$ParentPath,
  46.                 [Parameter(Mandatory, ValueFromPipeline)][String]$FullPath
  47.             )
  48.             process {
  49.                 Return $FullPath.Replace("$ParentPath\",$null)
  50.             }
  51.         }
  52.        
  53.         [String]$ArchiveName = Split-Path -Path $ArchivePath -Leaf
  54.         [String]$ArchiveDir = Split-Path -Path $ArchivePath -Parent | Resolve-Path
  55.         [String]$ArchiveFile = "$ArchiveDir\$ArchiveName"
  56.        
  57.         [bool]$ArchiveExists = Test-Path -Path $ArchiveFile -PathType Leaf
  58.        
  59.         If ($ArchiveExists -and -not $Force) {
  60.        
  61.             Write-Host "$(Split-Path -Path $ArchiveFile -Leaf) already exists. Overwrite existing archive? [Y/N]" -ForegroundColor Yellow -NoNewline
  62.        
  63.             While ($true) {
  64.            
  65.                 [System.ConsoleKey]$Key = [System.Console]::ReadKey($true)
  66.            
  67.                 If ($Key.Key -eq 'Y' -and $Key.Modifers -eq '0') {
  68.                     Write-Host "$(($Key).Char)"
  69.                     $Force = $true
  70.                     Break
  71.                 }
  72.                 ElseIf ($Key.Key -eq 'N' -and $Key.Modifiers -eq '0') {
  73.                     Write-Host "$(($Key).Char)"
  74.                     return $false
  75.                 }
  76.             }
  77.         }
  78.  
  79.         Add-Type -AssemblyName 'System.IO.Compression','System.IO.Compression.FileSystem'
  80.  
  81.         If ($ArchiveExists) {
  82.             Remove-Item $ArchiveFile -Force
  83.         }
  84.  
  85.         [System.IO.Compression.ZipArchive]$Archive = [System.IO.Compression.ZipFile]::Open($ArchiveFile, [System.IO.Compression.ZipArchiveMode]::Create)
  86.  
  87.     }
  88.     process {
  89.    
  90.         If ($PSCmdlet.ParameterSetName -eq "ByPipe") {
  91.        
  92.             [Object[]]$FSO += $InputObject
  93.        
  94.         }
  95.    
  96.     }
  97.     end {
  98.    
  99.         If ($PSCmdlet.ParameterSetName -eq "ByParam") {
  100.             [Object[]]$FSO = Get-ChildItem -Path $Path -Filter $Filter -Include $Include -Exclude $Exclude -Recurse:$Recurse
  101.         }
  102.    
  103.         [String]$ArchiveSource = Split-Path -Path $FSO[0].FullName -Parent
  104.  
  105.         [String]$PrevPath = Get-Location | Select-Object -ExpandProperty Path
  106.         Set-Location -Path $ArchiveSource
  107.  
  108.         [UInt32]$TotalFiles = ($FSO | Where-Object -FilterScript {$_.Attributes -notlike 'Directory'} | Measure-Object).Count
  109.         [UInt32]$Count = 0
  110.         [Byte]$Percent = [math]::Truncate($Count / $TotalFiles * 100)
  111.    
  112.         $ProgressParams = @{
  113.             Activity            = "Compressing files..."
  114.             Status              = "${Percent}% Complete"
  115.             CurrentOperation    = "$ArchiveSource"
  116.             PercentComplete     = $Percent
  117.         }
  118.    
  119.         $FSO | ForEach-Object {
  120.        
  121.             [String]$RelativePath = $_.FullName | Get-RelativePath -ParentPath $ArchiveSource
  122.        
  123.             $ProgressParams.Status = "${Percent}% Complete"
  124.             $ProgressParams.CurrentOperation = "[${ArchiveName}]\$RelativePath"
  125.        
  126.             Write-Progress @ProgressParams
  127.        
  128.             $Archive.CreateEntry(".\$RelativePath",$CompressionLevel) | Out-Null
  129.        
  130.             If ($_.Attributes -notlike 'Directory') {
  131.                 $Count++
  132.                 $Percent = ($Count / $TotalFiles * 100)
  133.             }
  134.        
  135.             $ProgressParams.Status = "${Percent}% Complete"
  136.             $ProgressParams.PercentComplete = $Percent
  137.        
  138.             Write-Progress @ProgressParams
  139.         }
  140.  
  141.  
  142.         $ProgressParams.Status = "100% Complete"
  143.         $ProgressParams.CurrentOperation = $null
  144.         $ProgressParams.PercentComplete = 100
  145.  
  146.         Write-Progress @ProgressParams
  147.  
  148.         $Archive.Dispose()
  149.  
  150.         Write-Progress @ProgressParams -Completed
  151.  
  152.         Set-Location -Path $PrevPath
  153.     }
  154. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement