我是 powershell 的新手,希望列出目录中 zip 文件中包含的所有文件。我不想使用任何第三方工具。
Structure of the directory is
mydir > dir
a.zip
b.zip
c.zip
with each file containing files named 1.txt or 2.txt or 3.txt
I am trying to get an output in the form
a.zip:1.txt
a.zip:2.txt
b.zip:files\3.txt
b.zip:4.txt
c.zip:1.txt
d.zip:10.txt
等等。
不幸的是,我的环境不是 4.5 而是 4.0。我能够写出这段代码,但它仍然需要大量的解析来清理,因为解压缩会提供很多额外的信息。
$packagedir="C:\Packages"
$unzipcmd = "c:\bins\unzip.exe -l"
$unmatchstr = "*Archive*"
pushd .
cd $packagedir
$filelist= Get-ChildItem -Recurse | Select-Object -ExpandProperty FullName
foreach ($item in $filelist)
{$ziplist = Invoke-Expression "$unzipcmd $item";
foreach ($item2 in $ziplist)
{
if ($item2.Contains("Archive") )
{
}
else
{
echo $item "::" $item2}}
}
popd
有没有更简单的方法来解析这个。unzip -l 输出中有很多额外的信息,如列标题、分隔符和日期以及每个文件名之前的其他日期。