PowerShell:从压缩存档中提取特定文件/文件夹

时间:2017-05-01 07:48:42

标签: powershell zip archive unzip

convenience init(aFourthOf rect: Rectangle) { self.init(width: rect.width / 2, height: rect.height / 2) } 包含:

foo.zip

其中a b c |- c1.exe |- c2.dll |- c3.dll 是文件夹。

如果我

a, b, c

提取Expand-Archive .\foo.zip -DestinationPath foo 中的所有文件/文件夹 我想只提取foo.zip文件夹。

3 个答案:

答案 0 :(得分:5)

试试这个

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

#extract list entries for dir myzipdir/c/ into myzipdir.zip
$zip = [IO.Compression.ZipFile]::OpenRead("c:\temp\myzipdir.zip")
$entries=$zip.Entries | where {$_.FullName -like 'myzipdir/c/*' -and $_.FullName -ne 'myzipdir/c/'} 

#create dir for result of extraction
New-Item -ItemType Directory -Path "c:\temp\c" -Force

#extraction
$entries | foreach {[IO.Compression.ZipFileExtensions]::ExtractToFile( $_, "c:\temp\c\" + $_.Name) }

#free object
$zip.Dispose()

答案 1 :(得分:1)

这个不使用外部库:

$shell= New-Object -Com Shell.Application 
$shell.NameSpace("$(resolve-path foo.zip)").Items() | where Name -eq "c" | ? {
    $shell.NameSpace("$PWD").copyhere($_) } 

也许它可以简化一点。

答案 2 :(得分:0)

这对我有用。当然,您需要编辑代码以适合您的目标

$results =@()

foreach ($p in $Path)
{


$shell = new-object -Comobject shell.application
$fileName = $p
$zip = $shell.namespace("$filename")

$Results +=  $zip.items()| where-object { $_.Name -like "*C*" -or  $_.Name -like 
"*b*"  }
}
foreach($item in $Results )
{

$shell.namespace($dest).copyhere($item)
}