我正在使用以下函數將文件添加到.zip壓縮文件,該文件工作正常,但我需要能夠將父目錄一些文件。有任何想法嗎?PowerShell-將文件添加到.zip壓縮文件,需要保留目錄結構
function Add-ZipFile
{
param([string]$zipfilename,
[string]$filter)
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)
$files = get-childitem -Filter "$filter" -recurse
foreach($file in $files)
{
$zipPackage.CopyHere($file.FullName)
Start-sleep -milliseconds 500
}
}
如何使用http://dotnetzip.codeplex.com/? –
我寧願修改現有的代碼,因爲它已經被綁定到當前的項目中。 – tjernigan