我有一个.zip文件,需要使用Powershell解压缩其全部内容。我在这么做,但似乎并不奏效:
$shell = New-Object -ComObject shell.application
$zip = $shell.NameSpace("C:\a.zip")
MkDir("C:\a")
foreach ($item in $zip.items()) {
$shell.Namespace("C:\a").CopyHere($item)
}
怎么了?目录C:\a仍然为空。
我有一个.zip文件,需要使用Powershell解压缩其全部内容。我在这么做,但似乎并不奏效:
$shell = New-Object -ComObject shell.application
$zip = $shell.NameSpace("C:\a.zip")
MkDir("C:\a")
foreach ($item in $zip.items()) {
$shell.Namespace("C:\a").CopyHere($item)
}
怎么了?目录C:\a仍然为空。
当前回答
使用powershell内置的方法Expand-Archive
例子
Expand-Archive -LiteralPath C:\archive.zip -DestinationPath C:\
其他回答
使用powershell内置的方法Expand-Archive
例子
Expand-Archive -LiteralPath C:\archive.zip -DestinationPath C:\
下面是一个使用system . io . compress . zipfile中的ExtractToDirectory的简单方法:
Add-Type -AssemblyName System.IO.Compression.FileSystem
function Unzip
{
param([string]$zipfile, [string]$outpath)
[System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath)
}
Unzip "C:\a.zip" "C:\a"
注意,如果目标文件夹不存在,ExtractToDirectory将创建它。其他事项:
现有文件将不会被覆盖,而是触发IOException。 此方法需要至少。net Framework 4.5,可用于Windows Vista和更新版本。 相对路径不能基于当前工作目录进行解析,请参见PowerShell中的.NET对象为什么不使用当前目录?
参见:
如何压缩和提取文件(Microsoft Docs)
ForEach循环处理位于$filepath变量中的每个ZIP文件
foreach($file in $filepath)
{
$zip = $shell.NameSpace($file.FullName)
foreach($item in $zip.items())
{
$shell.Namespace($file.DirectoryName).copyhere($item)
}
Remove-Item $file.FullName
}
function unzip {
param (
[string]$archiveFilePath,
[string]$destinationPath
)
if ($archiveFilePath -notlike '?:\*') {
$archiveFilePath = [System.IO.Path]::Combine($PWD, $archiveFilePath)
}
if ($destinationPath -notlike '?:\*') {
$destinationPath = [System.IO.Path]::Combine($PWD, $destinationPath)
}
Add-Type -AssemblyName System.IO.Compression
Add-Type -AssemblyName System.IO.Compression.FileSystem
$archiveFile = [System.IO.File]::Open($archiveFilePath, [System.IO.FileMode]::Open)
$archive = [System.IO.Compression.ZipArchive]::new($archiveFile)
if (Test-Path $destinationPath) {
foreach ($item in $archive.Entries) {
$destinationItemPath = [System.IO.Path]::Combine($destinationPath, $item.FullName)
if ($destinationItemPath -like '*/') {
New-Item $destinationItemPath -Force -ItemType Directory > $null
} else {
New-Item $destinationItemPath -Force -ItemType File > $null
[System.IO.Compression.ZipFileExtensions]::ExtractToFile($item, $destinationItemPath, $true)
}
}
} else {
[System.IO.Compression.ZipFileExtensions]::ExtractToDirectory($archive, $destinationPath)
}
}
使用:
unzip 'Applications\Site.zip' 'C:\inetpub\wwwroot\Site'
在PowerShell v5+中,有一个内置的Expand-Archive命令(以及Compress-Archive):
Expand-Archive C:\a.zip -DestinationPath C:\a