有没有办法在另一个zip文件中搜索一个字符串的zip文件?

时间:2016-10-13 18:25:35

标签: powershell zip powershell-v3.0 powershell-v4.0

我试图找出搜索字符串值的最佳方法,例如:

foreach ($file in Get-ChildItem -Path $ScriptPath -Recurse | Select-String -pattern $Pattern | Select-Object -Unique path) {$file.path}

但是,我需要能够在zip文件上进行相同的搜索,而不是在第一个zip文件中的zip文件上进行搜索。

你有答案吗?

谢谢,

失败者

1 个答案:

答案 0 :(得分:0)

你可以使用它来读取没有提取的zip的内容

 [io.compression.zipfile]::OpenRead("C:\temp\20160712-0730.zip").Entries.Name