此为资源整理价格,不提供任何技术支持不包安装。新手不要买!

源码仅供研究学习代码使用,严禁用于非法和商业用途!如需商业用途请去购买官方正版源码!

只适用于老手和技术大神!发货后谢绝退款行为!



【源码介绍】

   C# 实现的压缩管理工具,非常具有参考价值!

【源码截图】歪果仁开发的程序

【源码示例】

  using (ZipFile zip = ZipFile.Read(NameOfExistingZipFile))
      {
        zip.ExtractAll(args[1]);
      }

But you could also do something like this:

      using (ZipFile zip = ZipFile.Read(NameOfExistingZipFile))
      {
        foreach (ZipEntry e in zip)
        {
          e.Extract();
        }
      }


Or in VB, extraction would be like this:
     Using zip As ZipFile = ZipFile.Read(NameOfExistingZipFile)
         zip.ExtractAll
     End Using

Or this:
     Using zip As ZipFile = ZipFile.Read(NameOfExistingZipFile)
        Dim e As ZipEntry
        For Each e In zip
            e.Extract
        Next
     End Using



阿里云服务器
浏览记录