5

我正在尝试使用 powershell 将文件添加到 zip 文件

我可以创建 zip 文件,但不知道如何将我的文件添加到其中

我正在使用

$zipfilename = 'c:\cwRsync\backup.zip'
$file = 'c:\cwRsync\backup.log'
set-content $zipfilename ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18))
(dir $zipfilename).IsReadOnly = $false
$zipfile = (New-Object -ComObject shell.application).NameSpace($zipfilename)
$zipfile.MoveHere($file.FullName)

这会创建 zip 文件,但不会添加新文件

我尝试了在stackoverflow上找到的以下代码,该代码有效

$zipfilename = "a.zip"
set-content $zipfilename ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18))
$app = new-object -com shell.application
$zip = ( get-item a.zip ).fullname
$folder = $app.namespace( $zip )
$item = new-item file.txt -itemtype file -value "Mooo" -force
$folder.copyhere( $item.fullname )

但是添加了一个由 powershell 创建的文件,而我想添加一个现有文件

任何帮助将非常感激

4

3 回答 3

5

要创建 zip 存档:

powershell Compress-Archive %file% %file%.zip

要替换存档(使用不同的文件):

powershell Compress-Archive -force %different_file% %file%.zip

要将文件添加到(现有)存档:

powershell Compress-Archive -update %2nd_file% %file%.zip

在 Win 10 CMD Powershell 5.1 上测试

于 2021-06-22T06:44:17.303 回答
2

CopyHere函数只接受一个字符串,它是文件的路径。例如:

$folder.copyhere( "c:\PathToYourFile\YourFile" )

提示:

Powershell Pack 模块有一些有用的工具,其中之一是一个 zip 实用程序,它将您的代码减少到 1 行:

Copy-ToZip "c:\PathToYourFile\YourFile" -ZipFile a.zip
于 2012-12-05T20:01:52.543 回答
-1

我从我的笔记中提取了这个。从脚本专家的网站上得到它,也许这会有所帮助......

$source = "D:\temp\test"
$destination = "d:\temp\csvdir_Backup.zip"
If(Test-path $destination) {Remove-item $destination}
Add-Type -assembly "system.io.compression.filesystem"
[io.compression.zipfile]::CreateFromDirectory($Source, $destination) 
于 2017-01-02T22:16:40.883 回答