如何解压缩多个文件?

时间:2015-08-10 18:14:59

标签: powershell zip unzip

我正在尝试遍历文件夹中的zip文件并将其解压缩。我收到zip.items()的空错误。这个值怎么可能为空?

当我Write-Host $zip时,发布的值为System.__ComObject

$dira = "D:\User1\Desktop\ZipTest\IN"
$dirb = "D:\User1\Desktop\ZipTest\DONE\" 

$list = Get-childitem -recurse $dira -include *.zip

$shell = new-object -com shell.application

foreach($file in $list)
{
    $zip = $shell.NameSpace($file)
    foreach($item in $zip.items())
    {
        $shell.Namespace($dirb).copyhere($file)
    }
    Remove-Item $file
}

我收到的错误消息是:

You cannot call a method on a null-valued expression.  
At D:\Users\lr24\Desktop\powershellunziptest2.ps1:12 char:29  
+     foreach($item in $zip.items <<<< ())
    + CategoryInfo          : InvalidOperation: (items:String) [], RuntimeException  
    + FullyQualifiedErrorId : InvokeMethodOnNull

3 个答案:

答案 0 :(得分:2)

$fileFileInfo对象,但NameSpace()方法需要具有完整路径的字符串或数字常量。此外,您需要复制$item,而不是$file

改变这个:

foreach($file in $list)
{
    $zip = $shell.NameSpace($file)
    foreach($item in $zip.items())
    {
        $shell.Namespace($dirb).copyhere($file)
    }
    Remove-Item $file
}

进入这个:

foreach($file in $list)
{
    $zip = $shell.NameSpace($file.FullName)
    foreach($item in $zip.items())
    {
        $shell.Namespace($dirb).copyhere($item)
    }
    Remove-Item $file
}

答案 1 :(得分:0)

您错过了shell初始化。

$shell = new-object -com shell.application

在NameSpace之前使用它。

答案 2 :(得分:0)

如果你的$ env:path中有7个拉链

PS> $zips = dir *.zip
PS> $zips | %{7z x $_.FullName}

#unzip with Divider printed between unzip commands
PS> $zips | %{echo "`n`n======" $_.FullName; 7z x $_.FullName}

你可以在这里获得7-zip:

http://www.7-zip.org/

PS> $env:path += ";C:\\Program Files\\7-Zip"

说明:

花括号后跟的百分比称为foreach运算符:%{} 此运算符表示管道中的“Foreach”对象,使用放置在“$ _”变量中的对象调用花括号中的代码。