gpt4 book ai didi

c# - zip 文件中的内容

转载 作者:太空狗 更新时间:2023-10-29 22:28:58 26 4
gpt4 key购买 nike

如何在不解压缩 zip 文件的情况下在 C# 中查找文件列表。

最佳答案

sharpziplib :

ZipInputStream zip = new ZipInputStream(File.OpenRead(path));
ZipEntry item;
while ((item = zip.GetNextEntry()) != null)
{
Console.WriteLine(item.Name);
}

关于c# - zip 文件中的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3170695/

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