如何在 Powershell 中解压缩文件?
How to unzip a file in Powershell?
我有一个 .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
仍然是空的。
这是使用 ExtractToDirectory from System.IO.Compression.ZipFile 的简单方法:
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 和更新版本。
- 相对路径未根据当前工作目录解析,请参见Why don't .NET objects in PowerShell use the current directory?
另请参阅:
在 PowerShell v5+ 中,有一个内置的 Expand-Archive command(以及 Compress-Archive):
Expand-Archive c:\a.zip -DestinationPath c:\a
嘿,它对我有用..
$shell = New-Object -ComObject shell.application
$zip = $shell.NameSpace("put ur zip file path here")
foreach ($item in $zip.items()) {
$shell.Namespace("destination where files need to unzip").CopyHere($item)
}
使用 expand-archive
但自动创建以存档命名的目录:
function unzip ($file) {
$dirname = (Get-Item $file).Basename
New-Item -Force -ItemType directory -Path $dirname
expand-archive $file -OutputPath $dirname -ShowProgress
}
在 PowerShell v5.1 中,这与 v5 略有不同。根据 MS 文档,它必须有一个 -Path
参数来指定存档文件路径。
Expand-Archive -Path Draft.Zip -DestinationPath C:\Reference
否则,这可以是实际路径:
Expand-Archive -Path c:\Download\Draft.Zip -DestinationPath C:\Reference
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'
对于那些想要使用 Shell.Application.Namespace.Folder.CopyHere() 并希望在复制时隐藏进度条或使用更多选项的人,文档在这里:
https://docs.microsoft.com/en-us/windows/desktop/shell/folder-copyhere
要使用 powershell 并隐藏进度条和禁用确认,您可以使用如下代码:
# We should create folder before using it for shell operations as it is required
New-Item -ItemType directory -Path "C:\destinationDir" -Force
$shell = New-Object -ComObject Shell.Application
$zip = $shell.Namespace("C:\archive.zip")
$items = $zip.items()
$shell.Namespace("C:\destinationDir").CopyHere($items, 1556)
Shell.Application 在 windows 核心版本上的使用限制:
https://docs.microsoft.com/en-us/windows-server/administration/server-core/what-is-server-core
在 windows core 版本上,默认情况下 Microsoft-Windows-Server-Shell-Package 没有安装,所以 shell.applicaton 将不起作用。
注意: 以这种方式提取档案会花费很长时间并且会减慢windows gui
将 Expand-Archive
cmdlet 与参数集之一一起使用:
Expand-Archive -LiteralPath C:\source\file.Zip -DestinationPath C:\destination
Expand-Archive -Path file.Zip -DestinationPath C:\destination
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
}
使用内置的 powershell 方法Expand-Archive
例子
Expand-Archive -LiteralPath C:\archive.zip -DestinationPath C:\
我有一个 .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
仍然是空的。
这是使用 ExtractToDirectory from System.IO.Compression.ZipFile 的简单方法:
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 和更新版本。
- 相对路径未根据当前工作目录解析,请参见Why don't .NET objects in PowerShell use the current directory?
另请参阅:
在 PowerShell v5+ 中,有一个内置的 Expand-Archive command(以及 Compress-Archive):
Expand-Archive c:\a.zip -DestinationPath c:\a
嘿,它对我有用..
$shell = New-Object -ComObject shell.application
$zip = $shell.NameSpace("put ur zip file path here")
foreach ($item in $zip.items()) {
$shell.Namespace("destination where files need to unzip").CopyHere($item)
}
使用 expand-archive
但自动创建以存档命名的目录:
function unzip ($file) {
$dirname = (Get-Item $file).Basename
New-Item -Force -ItemType directory -Path $dirname
expand-archive $file -OutputPath $dirname -ShowProgress
}
在 PowerShell v5.1 中,这与 v5 略有不同。根据 MS 文档,它必须有一个 -Path
参数来指定存档文件路径。
Expand-Archive -Path Draft.Zip -DestinationPath C:\Reference
否则,这可以是实际路径:
Expand-Archive -Path c:\Download\Draft.Zip -DestinationPath C:\Reference
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'
对于那些想要使用 Shell.Application.Namespace.Folder.CopyHere() 并希望在复制时隐藏进度条或使用更多选项的人,文档在这里:
https://docs.microsoft.com/en-us/windows/desktop/shell/folder-copyhere
要使用 powershell 并隐藏进度条和禁用确认,您可以使用如下代码:
# We should create folder before using it for shell operations as it is required
New-Item -ItemType directory -Path "C:\destinationDir" -Force
$shell = New-Object -ComObject Shell.Application
$zip = $shell.Namespace("C:\archive.zip")
$items = $zip.items()
$shell.Namespace("C:\destinationDir").CopyHere($items, 1556)
Shell.Application 在 windows 核心版本上的使用限制:
https://docs.microsoft.com/en-us/windows-server/administration/server-core/what-is-server-core
在 windows core 版本上,默认情况下 Microsoft-Windows-Server-Shell-Package 没有安装,所以 shell.applicaton 将不起作用。
注意: 以这种方式提取档案会花费很长时间并且会减慢windows gui
将 Expand-Archive
cmdlet 与参数集之一一起使用:
Expand-Archive -LiteralPath C:\source\file.Zip -DestinationPath C:\destination
Expand-Archive -Path file.Zip -DestinationPath C:\destination
ForEach
循环处理位于 $filepath
变量
foreach($file in $filepath)
{
$zip = $shell.NameSpace($file.FullName)
foreach($item in $zip.items())
{
$shell.Namespace($file.DirectoryName).copyhere($item)
}
Remove-Item $file.FullName
}
使用内置的 powershell 方法Expand-Archive
例子
Expand-Archive -LiteralPath C:\archive.zip -DestinationPath C:\