gpt4 book ai didi

powershell - 如何在 Powershell 中解压文件?

转载 作者:行者123 更新时间:2023-12-03 04:09:06 24 4
gpt4 key购买 nike

我有一个 .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 v5+ 中,有一个 Expand-Archive command (以及压缩存档)内置:

Expand-Archive C:\a.zip -DestinationPath C:\a

关于powershell - 如何在 Powershell 中解压文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27768303/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com