gpt4 book ai didi

powershell - 使用 powershell/7za.exe 提取多个 zip 文件?

转载 作者:行者123 更新时间:2023-12-03 20:54:55 25 4
gpt4 key购买 nike

下面的代码

ls *.zip | % { c:\bin\7za.exe e $_ -o..\..\unzipped }
ls *.zip | % { c:\bin\7za.exe e $_.name -o..\..\unzipped }

收到以下错误消息。是powershell调用exe文件的约定问题吗?

Error:Incorrect command lineError:Incorrect command lineError:Incorrect command line....

最佳答案

这与 7-ZIP 命令行 7za.exe 工具有关。要使用相对路径作为输出目录,请将其用双引号括起来

ls *.zip | % { c:\bin\7za.exe e $_.FullName -o"..\..\unzipped" }

请注意,该路径是相对于当前目录的,而不是存档或 7za.exe

关于powershell - 使用 powershell/7za.exe 提取多个 zip 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29912071/

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