在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C#编写的Zip、GZip、Tar和BZip2解压缩库(SharpZipLib)源码

C#编写的Zip、GZip、Tar和BZip2解压缩库(SharpZipLib)源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.28M
  • 下载次数:3
  • 浏览次数:7
  • 发布时间:2024-05-23
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 解压缩 ZIP lib 源码 解压

实例介绍

【实例简介】

SharpZipLib(#ziplib,前身为NZipLib)是一个压缩库,支持使用存储和deflate压缩方法的Zip文件,PKZIP 2.0样式和AES加密,具有GNU长文件名扩展的tar,GZip,zlib和原始deflate,以及BZip2。支持Zip64,但尚不支持Deflate64。它被实现为一个程序集(可安装在GAC中),因此可以轻松地并入其他项目(在任何.NET语言中)。SharpZipLib的创建者这样说:“我将zip库移植到了C#,因为我需要gzip/zip压缩,我不想使用libzip.dll或类似的东西。我希望全部都是纯C#。

【实例截图】
【核心代码】
文件清单
└── SharpZipLib-ff2d7c30bdb2474d507f001bc555405e9f02a0bb
    ├── appveyor.yml
    ├── appveyor.yml.old
    ├── assets
    │   ├── ICSharpCode.SharpZipLib.snk
    │   └── sharpziplib-nuget-256x256.png
    ├── benchmark
    │   └── ICSharpCode.SharpZipLib.Benchmark
    │       ├── BZip2
    │       │   └── BZip2InputStream.cs
    │       ├── Checksum
    │       │   ├── Adler32.cs
    │       │   ├── BZip2Crc.cs
    │       │   └── Crc32.cs
    │       ├── ICSharpCode.SharpZipLib.Benchmark.csproj
    │       ├── Program.cs
    │       ├── Tar
    │       │   ├── TarInputStream.cs
    │       │   └── TarOutputStream.cs
    │       └── Zip
    │           ├── ZipFile.cs
    │           ├── ZipInputStream.cs
    │           └── ZipOutputStream.cs
    ├── CONTRIBUTING.md
    ├── docs
    │   ├── Changes.txt
    │   ├── future
    │   │   ├── ARCHIVES.TXT
    │   │   ├── FILEFMTS_ARC.md
    │   │   ├── FILEFMTS_ARJ.md
    │   │   ├── FILEFMTS.DOC
    │   │   ├── FILEFMTS_DWC.md
    │   │   ├── FILEFMTS_GZIP.md
    │   │   ├── FILEFMTS_HA.md
    │   │   ├── FILEFMTS_HYP.md
    │   │   ├── FILEFMTS_Introduction.md
    │   │   ├── FILEFMTS_LBR.md
    │   │   ├── FILEFMTS.LST
    │   │   ├── FILEFMTS_LZH.md
    │   │   ├── FILEFMTS_ZOO.md
    │   │   ├── FILE_ID.DIZ
    │   │   ├── README.md
    │   │   └── tar_15.html
    │   ├── help
    │   │   ├── api
    │   │   │   ├── index.md
    │   │   │   └── toc.yml
    │   │   ├── articles
    │   │   │   ├── intro.md
    │   │   │   └── toc.yml
    │   │   ├── BuildingHelpInfo.txt
    │   │   ├── docfx.json
    │   │   ├── index.md
    │   │   ├── serve.bat
    │   │   ├── template
    │   │   │   ├── logo.svg
    │   │   │   ├── partials
    │   │   │   │   └── navbar.tmpl.partial
    │   │   │   └── styles
    │   │   │       └── main.css
    │   │   └── toc.yml
    │   ├── nunit3-test-results-debug.xml
    │   ├── nunit3-test-results-release.xml
    │   ├── opencover
    │   │   ├── combined.js
    │   │   ├── ICSharpCode.SharpZipLib_Adler32.htm
    │   │   ├── ICSharpCode.SharpZipLib_BaseArchiveStorage.htm
    │   │   ├── ICSharpCode.SharpZipLib_BZip2Constants.htm
    │   │   ├── ICSharpCode.SharpZipLib_BZip2Crc.htm
    │   │   ├── ICSharpCode.SharpZipLib_BZip2Exception.htm
    │   │   ├── ICSharpCode.SharpZipLib_BZip2.htm
    │   │   ├── ICSharpCode.SharpZipLib_BZip2InputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_BZip2OutputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_CompletedFileHandler.htm
    │   │   ├── ICSharpCode.SharpZipLib_Crc32.htm
    │   │   ├── ICSharpCode.SharpZipLib_DeflaterConstants.htm
    │   │   ├── ICSharpCode.SharpZipLib_DeflaterEngine.htm
    │   │   ├── ICSharpCode.SharpZipLib_Deflater.htm
    │   │   ├── ICSharpCode.SharpZipLib_DeflaterHuffman.htm
    │   │   ├── ICSharpCode.SharpZipLib_DeflaterOutputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_DeflaterPending.htm
    │   │   ├── ICSharpCode.SharpZipLib_DescriptorData.htm
    │   │   ├── ICSharpCode.SharpZipLib_DirectoryEventArgs.htm
    │   │   ├── ICSharpCode.SharpZipLib_DirectoryFailureHandler.htm
    │   │   ├── ICSharpCode.SharpZipLib_DiskArchiveStorage.htm
    │   │   ├── ICSharpCode.SharpZipLib_DynamicDiskDataSource.htm
    │   │   ├── ICSharpCode.SharpZipLib_EntryPatchData.htm
    │   │   ├── ICSharpCode.SharpZipLib_ExtendedPathFilter.htm
    │   │   ├── ICSharpCode.SharpZipLib_ExtendedUnixData.htm
    │   │   ├── ICSharpCode.SharpZipLib_FastZipEvents.htm
    │   │   ├── ICSharpCode.SharpZipLib_FastZip.htm
    │   │   ├── ICSharpCode.SharpZipLib_FileFailureHandler.htm
    │   │   ├── ICSharpCode.SharpZipLib_FileSystemScanner.htm
    │   │   ├── ICSharpCode.SharpZipLib_GZipConstants.htm
    │   │   ├── ICSharpCode.SharpZipLib_GZipException.htm
    │   │   ├── ICSharpCode.SharpZipLib_GZip.htm
    │   │   ├── ICSharpCode.SharpZipLib_GZipInputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_GZipOutputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_InflaterDynHeader.htm
    │   │   ├── ICSharpCode.SharpZipLib_Inflater.htm
    │   │   ├── ICSharpCode.SharpZipLib_InflaterHuffmanTree.htm
    │   │   ├── ICSharpCode.SharpZipLib_InflaterInputBuffer.htm
    │   │   ├── ICSharpCode.SharpZipLib_InflaterInputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_InvalidHeaderException.htm
    │   │   ├── ICSharpCode.SharpZipLib_KeysRequiredEventArgs.htm
    │   │   ├── ICSharpCode.SharpZipLib_LzwConstants.htm
    │   │   ├── ICSharpCode.SharpZipLib_LzwException.htm
    │   │   ├── ICSharpCode.SharpZipLib_LzwInputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_MemoryArchiveStorage.htm
    │   │   ├── ICSharpCode.SharpZipLib_NameAndSizeFilter.htm
    │   │   ├── ICSharpCode.SharpZipLib_NameFilter.htm
    │   │   ├── ICSharpCode.SharpZipLib_NTTaggedData.htm
    │   │   ├── ICSharpCode.SharpZipLib_OutputWindow.htm
    │   │   ├── ICSharpCode.SharpZipLib_PathFilter.htm
    │   │   ├── ICSharpCode.SharpZipLib_PendingBuffer.htm
    │   │   ├── ICSharpCode.SharpZipLib_PkzipClassicCryptoBase.htm
    │   │   ├── ICSharpCode.SharpZipLib_PkzipClassicDecryptCryptoTransform.htm
    │   │   ├── ICSharpCode.SharpZipLib_PkzipClassicEncryptCryptoTransform.htm
    │   │   ├── ICSharpCode.SharpZipLib_PkzipClassic.htm
    │   │   ├── ICSharpCode.SharpZipLib_PkzipClassicManaged.htm
    │   │   ├── ICSharpCode.SharpZipLib_ProcessFileHandler.htm
    │   │   ├── ICSharpCode.SharpZipLib_ProgressEventArgs.htm
    │   │   ├── ICSharpCode.SharpZipLib_ProgressHandler.htm
    │   │   ├── ICSharpCode.SharpZipLib_ProgressMessageHandler.htm
    │   │   ├── ICSharpCode.SharpZipLib_RawTaggedData.htm
    │   │   ├── ICSharpCode.SharpZipLib_ScanEventArgs.htm
    │   │   ├── ICSharpCode.SharpZipLib_ScanFailureEventArgs.htm
    │   │   ├── ICSharpCode.SharpZipLib_SharpZipBaseException.htm
    │   │   ├── ICSharpCode.SharpZipLib_StaticDiskDataSource.htm
    │   │   ├── ICSharpCode.SharpZipLib_StreamManipulator.htm
    │   │   ├── ICSharpCode.SharpZipLib_StreamUtils.htm
    │   │   ├── ICSharpCode.SharpZipLib_TarArchive.htm
    │   │   ├── ICSharpCode.SharpZipLib_TarBuffer.htm
    │   │   ├── ICSharpCode.SharpZipLib_TarEntry.htm
    │   │   ├── ICSharpCode.SharpZipLib_TarException.htm
    │   │   ├── ICSharpCode.SharpZipLib_TarHeader.htm
    │   │   ├── ICSharpCode.SharpZipLib_TarInputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_TarOutputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_TestStatus.htm
    │   │   ├── ICSharpCode.SharpZipLib_WindowsNameTransform.htm
    │   │   ├── ICSharpCode.SharpZipLib_WindowsPathUtils.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipAESStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipAESTransform.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipConstants.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipEntryFactory.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipEntry.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipException.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipExtraData.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipFile.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipHelperStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipInputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipNameTransform.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipOutputStream.htm
    │   │   ├── ICSharpCode.SharpZipLib_ZipTestResultHandler.htm
    │   │   ├── index.htm
    │   │   ├── pic_branch0.png
    │   │   ├── pic_branch100.png
    │   │   ├── pic_branch10.png
    │   │   ├── pic_branch20.png
    │   │   ├── pic_branch30.png
    │   │   ├── pic_branch40.png
    │   │   ├── pic_branch50.png
    │   │   ├── pic_branch60.png
    │   │   ├── pic_branch70.png
    │   │   ├── pic_branch80.png
    │   │   ├── pic_branch90.png
    │   │   ├── pic_collapsed.png
    │   │   ├── pic_expanded.png
    │   │   ├── pic_pin_pinned.png
    │   │   ├── pic_pin_unpinned.png
    │   │   ├── pic_sortactive_asc.png
    │   │   ├── pic_sortactive_desc.png
    │   │   ├── pic_sortinactive.png
    │   │   └── report.css
    │   ├── opencover-results-release.xml
    │   ├── SharpZipLibCodeMap.dgml
    │   └── specification
    │       ├── algorithm.txt
    │       ├── appnote.txt
    │       ├── bzip2-manual-1.0.5.html
    │       ├── format.txt
    │       ├── README.md
    │       ├── rfc1950.txt
    │       ├── rfc1951.txt
    │       ├── rfc1952.txt
    │       ├── rfc-deflate.txt
    │       ├── rfc-gzip.txt
    │       ├── rfc-zlib.txt
    │       ├── tar_14.html
    │       └── tar_8.html
    ├── ICSharpCode.SharpZipLib.sln
    ├── LICENSE.txt
    ├── README.md
    ├── Rebracer.xml
    ├── samples
    │   └── ICSharpCode.SharpZipLib.Samples
    │       ├── cs
    │       │   ├── Cmd_BZip2
    │       │   │   ├── app.config
    │       │   │   ├── Cmd_BZip2.cs
    │       │   │   ├── Cmd_BZip2.csproj
    │       │   │   ├── Properties
    │       │   │   │   └── AssemblyInfo.cs
    │       │   │   └── readme.txt
    │       │   ├── Cmd_Checksum
    │       │   │   ├── app.config
    │       │   │   ├── Cmd_Checksum.cs
    │       │   │   ├── Cmd_Checksum.csproj
    │       │   │   ├── Properties
    │       │   │   │   └── AssemblyInfo.cs
    │       │   │   └── readme.txt
    │       │   ├── Cmd_GZip
    │       │   │   ├── app.config
    │       │   │   ├── Cmd_GZip.cs
    │       │   │   ├── Cmd_GZip.csproj
    │       │   │   ├── Properties
    │       │   │   │   └── AssemblyInfo.cs
    │       │   │   └── readme.txt
    │       │   ├── Cmd_Tar
    │       │   │   ├── app.config
    │       │   │   ├── Cmd_Tar.cs
    │       │   │   ├── Cmd_Tar.csproj
    │       │   │   └── Properties
    │       │   │       └── AssemblyInfo.cs
    │       │   ├── Cmd_ZipInfo
    │       │   │   ├── app.config
    │       │   │   ├── Cmd_ZipInfo.cs
    │       │   │   ├── Cmd_ZipInfo.csproj
    │       │   │   ├── Properties
    │       │   │   │   └── AssemblyInfo.cs
    │       │   │   └── readme.txt
    │       │   ├── CreateZipFile
    │       │   │   ├── app.config
    │       │   │   ├── CreateZipFile.cs
    │       │   │   ├── CreateZipFile.csproj
    │       │   │   ├── Properties
    │       │   │   │   └── AssemblyInfo.cs
    │       │   │   └── readme.txt
    │       │   ├── FastZip
    │       │   │   ├── app.config
    │       │   │   ├── FastZip.cs
    │       │   │   ├── FastZip.csproj
    │       │   │   └── Properties
    │       │   │       └── AssemblyInfo.cs
    │       │   ├── SampleAssemblyInfo.cs
    │       │   ├── sz
    │       │   │   ├── app.config
    │       │   │   ├── Properties
    │       │   │   │   └── AssemblyInfo.cs
    │       │   │   ├── sz.cs
    │       │   │   └── sz.csproj
    │       │   ├── unzipfile
    │       │   │   ├── App.config
    │       │   │   ├── Properties
    │       │   │   │   └── AssemblyInfo.cs
    │       │   │   ├── readme.txt
    │       │   │   ├── UnZipFile.cs
    │       │   │   └── unzipfile.csproj
    │       │   ├── viewzipfile
    │       │   │   ├── App.config
    │       │   │   ├── Properties
    │       │   │   │   └── AssemblyInfo.cs
    │       │   │   ├── readme.txt
    │       │   │   ├── ViewZipFile.cs
    │       │   │   └── viewzipfile.csproj
    │       │   └── zf
    │       │       ├── app.config
    │       │       ├── Properties
    │       │       │   └── AssemblyInfo.cs
    │       │       ├── zf.cs
    │       │       └── zf.csproj
    │       ├── Samples.sln
    │       └── vb
    │           ├── CreateZipFile
    │           │   ├── app.config
    │           │   ├── CreateZipFileForm.resx
    │           │   ├── CreateZipFileForm.vb
    │           │   ├── CreateZipFile.MainForm.resources
    │           │   ├── CreateZipFile.vbproj
    │           │   ├── MainForm.resources
    │           │   └── My Project
    │           │       └── AssemblyInfo.vb
    │           ├── minibzip2
    │           │   ├── app.config
    │           │   ├── MiniBzip2Form.resx
    │           │   ├── MiniBzip2Form.vb
    │           │   ├── minibzip2.vbproj
    │           │   └── My Project
    │           │       ├── Application.Designer.vb
    │           │       ├── Application.myapp
    │           │       ├── app.manifest
    │           │       ├── AssemblyInfo.vb
    │           │       ├── Resources.Designer.vb
    │           │       └── Resources.resx
    │           ├── SampleAssemblyInfo.vb
    │           ├── viewzipfile
    │           │   ├── app.config
    │           │   ├── My Project
    │           │   │   └── AssemblyInfo.vb
    │           │   ├── ViewZipFileForm.resx
    │           │   ├── ViewZipFileForm.vb
    │           │   └── viewzipfile.vbproj
    │           ├── WpfCreateZipFile
    │           │   ├── App.config
    │           │   ├── Application.xaml
    │           │   ├── Application.xaml.vb
    │           │   ├── My Project
    │           │   │   ├── app.manifest
    │           │   │   ├── AssemblyInfo.vb
    │           │   │   ├── MyExtensions
    │           │   │   │   └── MyWpfExtension.vb
    │           │   │   ├── Resources.Designer.vb
    │           │   │   ├── Resources.resx
    │           │   │   ├── Settings.Designer.vb
    │           │   │   └── Settings.settings
    │           │   ├── WpfCreateZipFile.vbproj
    │           │   ├── WpfCreateZipFileWindow.xaml
    │           │   └── WpfCreateZipFileWindow.xaml.vb
    │           └── zipfiletest
    │               ├── app.config
    │               ├── Main.resx
    │               ├── Main.vb
    │               ├── My Project
    │               │   └── AssemblyInfo.vb
    │               └── zipfiletest.vbproj
    ├── SECURITY.md
    ├── src
    │   └── ICSharpCode.SharpZipLib
    │       ├── AssemblyInfo.cs
    │       ├── BZip2
    │       │   ├── BZip2Constants.cs
    │       │   ├── BZip2.cs
    │       │   ├── BZip2Exception.cs
    │       │   ├── BZip2InputStream.cs
    │       │   └── BZip2OutputStream.cs
    │       ├── Checksum
    │       │   ├── Adler32.cs
    │       │   ├── BZip2Crc.cs
    │       │   ├── Crc32.cs
    │       │   ├── CrcUtilities.cs
    │       │   └── IChecksum.cs
    │       ├── Core
    │       │   ├── ByteOrderUtils.cs
    │       │   ├── EmptyRefs.cs
    │       │   ├── ExactMemoryPool.cs
    │       │   ├── Exceptions
    │       │   │   ├── SharpZipBaseException.cs
    │       │   │   ├── StreamDecodingException.cs
    │       │   │   ├── StreamUnsupportedException.cs
    │       │   │   ├── UnexpectedEndOfStreamException.cs
    │       │   │   └── ValueOutOfRangeException.cs
    │       │   ├── FileSystemScanner.cs
    │       │   ├── INameTransform.cs
    │       │   ├── InflaterPool.cs
    │       │   ├── InvalidNameException.cs
    │       │   ├── IScanFilter.cs
    │       │   ├── NameFilter.cs
    │       │   ├── PathFilter.cs
    │       │   ├── PathUtils.cs
    │       │   ├── StreamUtils.cs
    │       │   └── StringBuilderPool.cs
    │       ├── Encryption
    │       │   ├── PkzipClassic.cs
    │       │   ├── ZipAESStream.cs
    │       │   └── ZipAESTransform.cs
    │       ├── GZip
    │       │   ├── GZipConstants.cs
    │       │   ├── GZip.cs
    │       │   ├── GZipException.cs
    │       │   ├── GzipInputStream.cs
    │       │   └── GzipOutputStream.cs
    │       ├── ICSharpCode.SharpZipLib.csproj
    │       ├── Lzw
    │       │   ├── LzwConstants.cs
    │       │   ├── LzwException.cs
    │       │   └── LzwInputStream.cs
    │       ├── SharpZipLibOptions.cs
    │       ├── Tar
    │       │   ├── InvalidHeaderException.cs
    │       │   ├── TarArchive.cs
    │       │   ├── TarBuffer.cs
    │       │   ├── TarEntry.cs
    │       │   ├── TarException.cs
    │       │   ├── TarExtendedHeaderReader.cs
    │       │   ├── TarHeader.cs
    │       │   ├── TarInputStream.cs
    │       │   ├── TarOutputStream.cs
    │       │   └── TarStringExtension.cs
    │       └── Zip
    │           ├── Compression
    │           │   ├── DeflaterConstants.cs
    │           │   ├── Deflater.cs
    │           │   ├── DeflaterEngine.cs
    │           │   ├── DeflaterHuffman.cs
    │           │   ├── DeflaterPending.cs
    │           │   ├── Inflater.cs
    │           │   ├── InflaterDynHeader.cs
    │           │   ├── InflaterHuffmanTree.cs
    │           │   ├── PendingBuffer.cs
    │           │   ├── PooledInflater.cs
    │           │   └── Streams
    │           │       ├── DeflaterOutputStream.cs
    │           │       ├── InflaterInputStream.cs
    │           │       ├── OutputWindow.cs
    │           │       └── StreamManipulator.cs
    │           ├── FastZip.cs
    │           ├── IEntryFactory.cs
    │           ├── WindowsNameTransform.cs
    │           ├── ZipConstants.cs
    │           ├── ZipEncryptionMethod.cs
    │           ├── ZipEntry.cs
    │           ├── ZipEntryExtensions.cs
    │           ├── ZipEntryFactory.cs
    │           ├── ZipException.cs
    │           ├── ZipExtraData.cs
    │           ├── ZipFile.cs
    │           ├── ZipFormat.cs
    │           ├── ZipHelperStream.cs
    │           ├── ZipInputStream.cs
    │           ├── ZipNameTransform.cs
    │           ├── ZipOutputStream.cs
    │           └── ZipStrings.cs
    ├── test
    │   └── ICSharpCode.SharpZipLib.Tests
    │       ├── app.config
    │       ├── Base
    │       │   └── InflaterDeflaterTests.cs
    │       ├── BZip2
    │       │   └── Bzip2Tests.cs
    │       ├── Checksum
    │       │   └── ChecksumTests.cs
    │       ├── Core
    │       │   ├── ByteOrderUtilsTests.cs
    │       │   ├── CoreTests.cs
    │       │   └── StringBuilderPoolTests.cs
    │       ├── GZip
    │       │   ├── GZipAsyncTests.cs
    │       │   └── GZipTests.cs
    │       ├── ICSharpCode.SharpZipLib.Tests.csproj
    │       ├── Lzw
    │       │   └── LzwTests.cs
    │       ├── Serialization
    │       │   └── SerializationTests.cs
    │       ├── Tar
    │       │   ├── TarArchiveTests.cs
    │       │   ├── TarBufferTests.cs
    │       │   ├── TarInputStreamTests.cs
    │       │   └── TarTests.cs
    │       ├── TestSupport
    │       │   ├── PerformanceTesting.cs
    │       │   ├── RingBuffer.cs
    │       │   ├── SevenZip.cs
    │       │   ├── Streams.cs
    │       │   ├── StringTesting.cs
    │       │   ├── ThreadEx.cs
    │       │   ├── Utils.cs
    │       │   └── ZipTesting.cs
    │       └── Zip
    │           ├── FastZipHandling.cs
    │           ├── GeneralHandling.cs
    │           ├── PassthroughTests.cs
    │           ├── StreamHandling.cs
    │           ├── WindowsNameTransformHandling.cs
    │           ├── ZipCorruptionHandling.cs
    │           ├── ZipEncryptionHandling.cs
    │           ├── ZipEntryFactoryHandling.cs
    │           ├── ZipEntryHandling.cs
    │           ├── ZipExtraDataHandling.cs
    │           ├── ZipFileHandling.cs
    │           ├── ZipNameTransformHandling.cs
    │           ├── ZipStreamAsyncTests.cs
    │           ├── ZipStringsTests.cs
    │           └── ZipTests.cs
    └── tools
        ├── appveyor-docfx-build.ps1
        ├── appveyor-docfx-init.ps1
        ├── appveyor-install.ps1
        ├── appveyor-test.ps1
        ├── old
        │   ├── ICSharpCode.SharpZipLib.nuspec
        │   ├── ICSharpCode.SharpZipLib.version
        │   ├── install-fxmicroframework-43-44.ps1
        │   ├── installGAC.bat
        │   ├── run-appveyor-build.ps1
        │   ├── run-nunit3-tests-debug.cmd
        │   ├── run-nunit3-tests-release.cmd
        │   ├── run-opencover.cmd
        │   ├── run-reportgenerator.cmd
        │   ├── sharpziplib.pc
        │   └── uninstallGAC.bat
        ├── release-notes
        │   ├── README.md
        │   ├── release-notes.js
        │   ├── release-notes.json
        │   └── release-notes-md.ejs
        └── test-scripts.ps1

83 directories, 413 files

实例下载地址

C#编写的Zip、GZip、Tar和BZip2解压缩库(SharpZipLib)源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警