如何使用PowerShell创建zip存档?

时间:2009-07-20 11:56:41

标签: powershell zip

是否可以使用PowerShell创建zip存档?

25 个答案:

答案 0 :(得分:247)

适用于PowerShell 3和.NET 4.5的纯PowerShell替代方法(如果可以使用它):

function ZipFiles( $zipfilename, $sourcedir )
{
   Add-Type -Assembly System.IO.Compression.FileSystem
   $compressionLevel = [System.IO.Compression.CompressionLevel]::Optimal
   [System.IO.Compression.ZipFile]::CreateFromDirectory($sourcedir,
        $zipfilename, $compressionLevel, $false)
}

只需传递您想要创建的zip存档的完整路径以及包含您要压缩的文件的目录的完整路径。

答案 1 :(得分:212)

PowerShell v5.0添加了Compress-ArchiveExpand-Archive cmdlet。链接的页面有完整的例子,但它的要点是:

# Create a zip file with the contents of C:\Stuff\
Compress-Archive -Path C:\Stuff -DestinationPath archive.zip

# Add more files to the zip file
# (Existing files in the zip file with the same name are replaced)
Compress-Archive -Path C:\OtherStuff\*.txt -Update -DestinationPath archive.zip

# Extract the zip file to C:\Destination\
Expand-Archive -Path archive.zip -DestinationPath C:\Destination

答案 2 :(得分:115)

如果您前往CodePlex并抓取PowerShell Community Extensions,则可以使用他们的write-zip cmdlet。

  

CodePlex处于只读模式,准备关机

你可以去PowerShell Gallery

答案 3 :(得分:55)

采用最新.NET 4.5框架的本机方式,但完全没有功能:

创建:

Add-Type -Assembly "System.IO.Compression.FileSystem" ;
[System.IO.Compression.ZipFile]::CreateFromDirectory("c:\your\directory\to\compress", "yourfile.zip") ;

提取:

Add-Type -Assembly "System.IO.Compression.FileSystem" ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("yourfile.zip", "c:\your\destination") ;

如前所述,完全没有功能,所以不要期望覆盖标志。

更新:请参阅下文,了解多年来对此进行了扩展的其他开发人员......

答案 4 :(得分:42)

安装7zip(或下载命令行版本)并使用此PowerShell方法:

function create-7zip([String] $aDirectory, [String] $aZipfile){
    [string]$pathToZipExe = "$($Env:ProgramFiles)\7-Zip\7z.exe";
    [Array]$arguments = "a", "-tzip", "$aZipfile", "$aDirectory", "-r";
    & $pathToZipExe $arguments;
}

您可以这样称呼它:

create-7zip "c:\temp\myFolder" "c:\temp\myFolder.zip"

答案 5 :(得分:14)

编辑两个 - 此代码是一个丑陋,丑陋的历史。你不想要它。

这会使用示例here

后面的System.IO.Packaging.ZipPackage压缩.\in.\out.zip的内容
$zipArchive = $pwd.path + "\out.zip"
[System.Reflection.Assembly]::Load("WindowsBase,Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")
$ZipPackage=[System.IO.Packaging.ZipPackage]::Open($zipArchive,
  [System.IO.FileMode]"OpenOrCreate", [System.IO.FileAccess]"ReadWrite")
$in = gci .\in | select -expand fullName
[array]$files = $in -replace "C:","" -replace "\\","/"
ForEach ($file In $files)
{
   $partName=New-Object System.Uri($file, [System.UriKind]"Relative")
   $part=$ZipPackage.CreatePart($partName, "application/zip",
      [System.IO.Packaging.CompressionOption]"Maximum")
   $bytes=[System.IO.File]::ReadAllBytes($file)
   $stream=$part.GetStream()
   $stream.Write($bytes, 0, $bytes.Length)
   $stream.Close()
}
$ZipPackage.Close()
对于较大的文件,

修改 Unreliable,可能> 10mb,YMMV。 Something to do具有appdomain证据和独立存储空间。友好的.NET 4.5 approach在PS v3中运行良好,但在我的情况下需要更多的内存。要使用PS v2中的.NET 4,配置文件需要unsupported tweak

答案 6 :(得分:12)

给出以下另一种选择。这将压缩一个完整的文件夹,并将存档写入给定名称的给定路径。

需要.NET 3或更高版本

Add-Type -assembly "system.io.compression.filesystem"

$source = 'Source path here'    
$destination = "c:\output\dummy.zip"

If(Test-path $destination) {Remove-item $destination}

[io.compression.zipfile]::CreateFromDirectory($Source, $destination)

答案 7 :(得分:7)

对于压缩,我会使用一个库(7-Zip好像Michal suggests)。

如果安装7-Zip,则安装的目录将包含7z.exe这是一个控制台应用程序 您可以直接调用它并使用您想要的任何压缩选项。

如果您希望使用DLL,那也应该是可能的 7-Zip是免费软件和开源软件。

答案 8 :(得分:6)

System.IO.Packaging.ZipPackage怎么样?

它需要.NET 3.0或更高版本。

#Load some assemblys. (No line break!)
[System.Reflection.Assembly]::Load("WindowsBase, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")

#Create a zip file named "MyZipFile.zip". (No line break!)
$ZipPackage=[System.IO.Packaging.ZipPackage]::Open("C:\MyZipFile.zip",
   [System.IO.FileMode]"OpenOrCreate", [System.IO.FileAccess]"ReadWrite")

#The files I want to add to my archive:
$files = @("/Penguins.jpg", "/Lighthouse.jpg")

#For each file you want to add, we must extract the bytes
#and add them to a part of the zip file.
ForEach ($file In $files)
{
   $partName=New-Object System.Uri($file, [System.UriKind]"Relative")
   #Create each part. (No line break!)
   $part=$ZipPackage.CreatePart($partName, "",
      [System.IO.Packaging.CompressionOption]"Maximum")
   $bytes=[System.IO.File]::ReadAllBytes($file)
   $stream=$part.GetStream()
   $stream.Write($bytes, 0, $bytes.Length)
   $stream.Close()
}

#Close the package when we're done.
$ZipPackage.Close()

通过Anders Hesselbom

答案 9 :(得分:5)

以下是PowerShell v5的原生解决方案,使用cmdlet Compress-Archive Creating Zip files using PowerShell

另请参阅Microsoft Docs Compress-Archive

示例1:

Compress-Archive `
    -LiteralPath C:\Reference\Draftdoc.docx, C:\Reference\Images\diagram2.vsd `
    -CompressionLevel Optimal `
    -DestinationPath C:\Archives\Draft.Zip

示例2:

Compress-Archive `
    -Path C:\Reference\* `
    -CompressionLevel Fastest `
    -DestinationPath C:\Archives\Draft

示例3:

Write-Output $files | Compress-Archive -DestinationPath $outzipfile

答案 10 :(得分:4)

这真的很模糊但有效。 7za.exe 是7zip的独立版本,可与安装包一起使用。

# get files to be send
$logFiles = Get-ChildItem C:\Logging\*.* -Include *.log | where {$_.Name -match $yesterday} 

foreach ($logFile in $logFiles)
{
    Write-Host ("Processing " + $logFile.FullName)

    # compress file
    & ./7za.exe a -mmt=off ($logFile.FullName + ".7z") $logFile.FullName

}

答案 11 :(得分:4)

为什么没人看文档? 受支持的方法可以创建一个空的zip文件,并将每个文件添加到内置到每个人都引用的同一个.NET 4.5库中的单个文件中。

请参见下面的代码示例:

> node app.js
addNote

如果您有任何任何问题,我建议您browse the documentation

答案 12 :(得分:4)

function Zip-File
    {
    param (
    [string]$ZipName,
    [string]$SourceDirectory 

    )
       Add-Type -Assembly System.IO.Compression.FileSystem
       $Compress = [System.IO.Compression.CompressionLevel]::Optimal
       [System.IO.Compression.ZipFile]::CreateFromDirectory($SourceDirectory,
            $ZipName, $Compress, $false)
    }

注意:
ZipName:您要创建的Zip文件的完整路径。

SourceDirectory:包含您要压缩的文件的目录的完整路径。

答案 13 :(得分:3)

如果有人需要压缩单个文件(而不是文件夹):http://blogs.msdn.com/b/jerrydixon/archive/2014/08/08/zipping-a-single-file-with-powershell.aspx

[CmdletBinding()]
Param(
     [Parameter(Mandatory=$True)]
     [ValidateScript({Test-Path -Path $_ -PathType Leaf})]
     [string]$sourceFile,

     [Parameter(Mandatory=$True)]
     [ValidateScript({-not(Test-Path -Path $_ -PathType Leaf)})]
     [string]$destinationFile
) 

<#
     .SYNOPSIS
     Creates a ZIP file that contains the specified innput file.

     .EXAMPLE
     FileZipper -sourceFile c:\test\inputfile.txt 
                -destinationFile c:\test\outputFile.zip
#> 

function New-Zip
{
     param([string]$zipfilename)
     set-content $zipfilename 
          ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18))
     (dir $zipfilename).IsReadOnly = $false
}

function Add-Zip
{
     param([string]$zipfilename) 

     if(-not (test-path($zipfilename)))
     {
          set-content $zipfilename 
               ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18))
          (dir $zipfilename).IsReadOnly = $false    

     }

     $shellApplication = new-object -com shell.application
     $zipPackage = $shellApplication.NameSpace($zipfilename)


     foreach($file in $input) 
     { 
          $zipPackage.CopyHere($file.FullName)
          Start-sleep -milliseconds 500
     }
}

dir $sourceFile | Add-Zip $destinationFile

答案 14 :(得分:3)

这也适用于压缩单个文件而不使用临时文件夹并使用从此StackOverflow answer从C#转换的本机.Net 4.5。它使用了来自here的更好的使用语法。

用法:

ZipFiles -zipFilename output.zip -sourceFile input.sql -filename name.inside.zip.sql

代码:

function ZipFiles([string] $zipFilename, [string] $sourceFile, [string] $filename)
{
    $fullSourceFile = (Get-Item -Path "$sourceFile" -Verbose).FullName
    $fullZipFile = (Get-Item -Path "$zipFilename" -Verbose).FullName

    Add-Type -AssemblyName System.IO
    Add-Type -AssemblyName System.IO.Compression
    Add-Type -AssemblyName System.IO.Compression.FileSystem

    Using-Object ($fs = New-Object System.IO.FileStream($fullZipFile, [System.IO.FileMode]::Create)) {
         Using-Object ($arch = New-Object System.IO.Compression.ZipArchive($fs, [System.IO.Compression.ZipArchiveMode]::Create)) {
             [System.IO.Compression.ZipFileExtensions]::CreateEntryFromFile($arch, $fullSourceFile, $filename)
        }
    }
}

使用:

function Using-Object
{
    [CmdletBinding()]
    param (
        [Parameter(Mandatory = $true)]
        [AllowEmptyString()]
        [AllowEmptyCollection()]
        [AllowNull()]
        [Object]
        $InputObject,

        [Parameter(Mandatory = $true)]
        [scriptblock]
        $ScriptBlock
    )

    try
    {
        . $ScriptBlock
    }
    finally
    {
        if ($null -ne $InputObject -and $InputObject -is [System.IDisposable])
        {
            $InputObject.Dispose()
        }
    }
}

答案 15 :(得分:3)

这是工作代码,从源文件夹压缩所有文件并在目标文件夹中创建zip文件。

    $DestZip="C:\Destination\"
    $Source = "C:\Source\"

    $folder = Get-Item -Path $Source

    $ZipTimestamp = Get-Date -format yyyyMMdd-HHmmss;
    $ZipFileName  = $DestZip + "Backup_" + $folder.name + "_" + $ZipTimestamp + ".zip" 

    $Source

    set-content $ZipFileName ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18)) 
    # Wait for the zip file to be created.
    while (!(Test-Path -PathType leaf -Path $ZipFileName))
    {    
        Start-Sleep -Milliseconds 20
    } 
    $ZipFile = (new-object -com shell.application).NameSpace($ZipFileName)

    Write-Output (">> Waiting Compression : " + $ZipFileName)       

    #BACKUP - COPY
    $ZipFile.CopyHere($Source) 

    $ZipFileName
    # ARCHIVE

    Read-Host "Please Enter.."

答案 16 :(得分:3)

这是sonjz答案的略微改进版本,它添加了一个覆盖选项。

function Zip-Files(
        [Parameter(Position=0, Mandatory=$true, ValueFromPipeline=$false)]
        [string] $zipfilename,
        [Parameter(Position=1, Mandatory=$true, ValueFromPipeline=$false)]
        [string] $sourcedir,
        [Parameter(Position=2, Mandatory=$false, ValueFromPipeline=$false)]
        [bool] $overwrite)

{
   Add-Type -Assembly System.IO.Compression.FileSystem
   $compressionLevel = [System.IO.Compression.CompressionLevel]::Optimal

    if ($overwrite -eq $true )
    {
        if (Test-Path $zipfilename)
        {
            Remove-Item $zipfilename
        }
    }

    [System.IO.Compression.ZipFile]::CreateFromDirectory($sourcedir, $zipfilename, $compressionLevel, $false)
}

答案 17 :(得分:2)

这是一个完整的命令行示例,可以从cmd.exe或ssh或您想要的内容启动!

<div class="my-container">
  <span class="my-text">5</span>
  <span class='icon icon-star my-icon'></span>
</div>

此致

答案 18 :(得分:2)

加载[System.IO.IOException]类并使用其方法是一个重要的步骤,以便抑制不需要的错误,因为它是一个非PowerShell原生的类,所以如果没有它,就会遇到各种错误上下文。

我错误地控制了我的脚本到T,但是有很多额外的红色文件存在&#39;使用[System.IO.Compression.ZipFile]

时输出
function zipFiles(
    [Parameter(Position=0, Mandatory=$true]
    [string] $sourceFolder,
    [Parameter(Position=1, Mandatory=$true]
    [string]$zipFileName,
    [Parameter(Position=2, Mandatory=$false]
    [bool]$overwrite)

{   
Add-Type -Assembly System.IO
Add-Type -Assembly System.IO.Compression.FileSystem

$compressionLevel = [System.IO.Compression.CompressionLevel]::Optimal

$directoryTest = (Test-Path $dailyBackupDestFolder)
$fileTest = (Test-Path $zipFileName)

if ( $directoryTest -eq $false) 
{ 
    New-Item -ItemType Directory -Force -Path $dailyBackupDestFolder 
}

     if ( $fileTest -eq $true)
     {
           if ($overwrite -eq $true ){Remove-Item $zipFileName}
     }   


    try
    {
         [System.IO.Compression.ZipFile]::CreateFromDirectory($sourceFolder,$zipFileName,$compressionLevel)       

    }
    catch [System.IO.IOException] 
    {
       Write-Output ($dateTime + ' | ' + $_.Exception.Message ) | Out-File $logFile -append -force 
    }
} 

我在这里做的是捕获这些IO错误,例如访问已存在的文件,捕获该错误并将其指向我使用更大程序维护的日志文件。

答案 19 :(得分:2)

Windows中用于压缩和提取目录的完整命令行命令如下:

  • 压缩:

    powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::CreateFromDirectory('C:\Indus','C:\Indus.zip'); }"
    
  • 提取:

    powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem';[IO.Compression.ZipFile]::ExtractToDirectory('C:\Indus.zip','C:\Indus'); }"
    

答案 20 :(得分:2)

如果您安装了WinRAR:

function ZipUsingRar([String] $directory, [String] $zipFileName)
{
  Write-Output "Performing operation ""Zip File"" on Target ""Item: $directory Destination:"
  Write-Output ($zipFileName + """")
  $pathToWinRar = "c:\Program Files\WinRAR\WinRar.exe";
  [Array]$arguments = "a", "-afzip", "-df", "-ep1", "$zipFileName", "$directory";
  & $pathToWinRar $arguments;
}

参数的含义:afzip创建zip存档,df删除文件,ep1不在存档中创建完整目录路径

答案 21 :(得分:2)

我使用此代码段检查我的数据库备份文件夹中是否有尚未压缩的备份文件,使用7-Zip压缩它们,最后删除*.bak文件以节省一些磁盘空间。 通知文件在压缩之前按长度(从最小到最大)排序,以避免某些文件未被压缩。

$bkdir = "E:\BackupsPWS"
$7Zip = 'C:\"Program Files"\7-Zip\7z.exe'

get-childitem -path $bkdir | Sort-Object length |
where
{
    $_.extension -match ".(bak)" -and
    -not (test-path ($_.fullname -replace "(bak)", "7z"))
} |
foreach
{
    $zipfilename = ($_.fullname -replace "bak", "7z")
    Invoke-Expression "$7Zip a $zipfilename $($_.FullName)"
}
get-childitem -path $bkdir |
where {
    $_.extension -match ".(bak)" -and
   (test-path ($_.fullname -replace "(bak)", "7z"))
} |
foreach { del $_.fullname }

您可以在这里查看PowerShell script to backup, compress and transfer those files over FTP

答案 22 :(得分:1)

自发布初始答案以来,很多都已更改。这是一些使用 Compress-Archive 命令的最新示例。

命令通过压缩由xy = [50, 2, 34, 6, 4, 3, 1, 5, 2, 1, 10 ,1] lowest = min(xy) positions = [i for i, v in enumerate(xy) if v == lowest] print(positions) # ==> [6, 9, 11] 参数指定的两个文件Draft.zipDraftdoc.docx来创建新的存档文件diagram2.vsd。为此操作指定的压缩级别为“最佳”。

Path

命令通过压缩由Compress-Archive -Path C:\Reference\Draftdoc.docx, C:\Reference\Images\diagram2.vsd -CompressionLevel Optimal -DestinationPath C:\Archives\Draft.Zip 参数指定的两个文件Draft.zipDraft doc.docx来创建新的存档文件Diagram [2].vsd。为此操作指定的压缩级别为“最佳”。

LiteralPath

命令在Compress-Archive -LiteralPath 'C:\Reference\Draft Doc.docx', 'C:\Reference\Images\Diagram [2].vsd' -CompressionLevel Optimal -DestinationPath C:\Archives\Draft.Zip 文件夹中创建新的存档文件Draft.zip。新的存档文件包含 C:\ Reference 文件夹中的每个文件,因为在 Path 参数中使用了通配符代替特定的文件名。

C:\Archives

命令从整个文件夹Compress-Archive -Path C:\Reference\* -CompressionLevel Fastest -DestinationPath C:\Archives\Draft

创建归档文件
C:\Reference

PowerShell自动将Compress-Archive -Path C:\Reference -DestinationPath C:\Archives\Draft 扩展名附加到文件名。

答案 23 :(得分:-1)

离子方法摇滚:

https://dotnetzip.codeplex.com/wikipage?title=PS-Examples

支持密码,其他加密方法等。

答案 24 :(得分:-4)

此脚本迭代所有目录并压缩每个目录

Get-ChildItem -Attributes d | foreach {write-zip $ .Name&#34; $($ .Name).zip&#34;}