Aspose::Zip Namespace Reference

Classes

class  AddProgressEventArgs
 Provides information about the progress of a Add operation. More...
 
class  CRC32
 Calculates a 32bit Cyclic Redundancy Checksum (CRC) using the same polynomial used by Zip. More...
 
class  CrcCalculatorStream
 A Stream that calculates a CRC32 (a checksum) on all bytes read, or on all bytes written. More...
 
class  DeflateStream
 A class for compressing and decompressing streams using the Deflate algorithm. More...
 
class  ExtractProgressEventArgs
 Provides information about the progress of the extract operation. More...
 
class  GZipStream
 A class for compressing and decompressing GZIP streams. More...
 
class  ReadProgressEventArgs
 Provides information about the progress of a Read operation. More...
 
class  SaveProgressEventArgs
 Provides information about the progress of a save operation. More...
 
class  ZipEntry
 Represents a single entry in a ZipFile. Typically, applications get a ZipEntry by enumerating the entries within a ZipFile, or by adding an entry to a ZipFile. More...
 
class  ZipErrorEventArgs
 Provides information about the an error that occurred while zipping. More...
 
class  ZipFile
 
class  ZipProgressEventArgs
 Provides information about the progress of a save, read, or extract operation. This is a base class; you will probably use one of the classes derived from this one. More...
 
class  ZlibBaseStream
 The internal class to implement compression and decompression using Zlib library. More...
 
class  ZlibCodec
 Encoder and Decoder for ZLIB and DEFLATE (IETF RFC1950 and RFC1951). More...
 
class  ZlibStream
 Represents a Zlib stream for compression or decompression. More...
 

Typedefs

typedef std::function< bool(int64_t, int64_t, System::String)> ReReadApprovalCallback
 
typedef std::function< bool(System::String, System::String)> WantCompressionCallback
 

Enumerations

enum class  FlushType
 Describes how to flush the current deflate operation. The different FlushType values are useful when using a Deflate in a streaming application. More...
 
enum class  CompressionLevel
 The compression level to be used when using a DeflateStream or ZlibStream with CompressionMode.Compress. More...
 
enum class  CompressionStrategy
 Describes options for how the compression algorithm is executed. Different strategies work better on different sorts of data. The strategy parameter can affect the compression ratio and the speed of compression but not the correctness of the compresssion. More...
 
enum class  CompressionMode
 An enum to specify the direction of transcoding - whether to compress or decompress. More...
 
enum class  ZlibStreamFlavor
 Zlib-specific flavor bits. More...
 
enum class  ZlibConstants : int
 A bunch of constants used in the Zlib interface. More...
 
enum class  EncryptionAlgorithm
 
enum class  ZipProgressEventType
 In an EventArgs type, indicates which sort of progress event is being reported. There are events for reading, events for saving, and events for extracting. More...
 
enum class  ExtractExistingFileAction
 
enum class  Zip64Option
 
enum class  ZipEntrySource
 
enum class  ZipEntryTimestamp
 
enum class  ZipErrorAction
 

Typedef Documentation

◆ ReReadApprovalCallback

typedef std::function<bool(int64_t, int64_t, System::String)> Aspose::Zip::ReReadApprovalCallback

◆ WantCompressionCallback

Enumeration Type Documentation

◆ CompressionLevel

enum class Aspose::Zip::CompressionLevel
strong

The compression level to be used when using a DeflateStream or ZlibStream with CompressionMode.Compress.

Enumerator
None 
Level0 
BestSpeed 
Level1 
Level2 
Level3 
Level4 
Level5 
Default 
Level6 
Level7 
Level8 
BestCompression 
Level9 

◆ CompressionMode

enum class Aspose::Zip::CompressionMode
strong

An enum to specify the direction of transcoding - whether to compress or decompress.

Enumerator
Compress 
Decompress 

◆ CompressionStrategy

Describes options for how the compression algorithm is executed. Different strategies work better on different sorts of data. The strategy parameter can affect the compression ratio and the speed of compression but not the correctness of the compresssion.

Enumerator
Default 
Filtered 
HuffmanOnly 
Rle 
Fixed 

◆ EncryptionAlgorithm

Enumerator
None 
PkzipWeak 
Unsupported 

◆ ExtractExistingFileAction

Enumerator
Throw 
OverwriteSilently 
DoNotOverwrite 
InvokeExtractProgressEvent 

◆ FlushType

enum class Aspose::Zip::FlushType
strong

Describes how to flush the current deflate operation. The different FlushType values are useful when using a Deflate in a streaming application.

Enumerator
None 
Partial 
Sync 
Full 
Finish 
Block 
Trees 

◆ Zip64Option

enum class Aspose::Zip::Zip64Option
strong
Enumerator
Default 
Never 
AsNecessary 
Always 

◆ ZipEntrySource

enum class Aspose::Zip::ZipEntrySource
strong
Enumerator
None 
FileSystem 
Stream 
ZipFile 

◆ ZipEntryTimestamp

enum class Aspose::Zip::ZipEntryTimestamp
strong
Enumerator
None 
DOS 
Windows 
Unix 
InfoZip1 

◆ ZipErrorAction

enum class Aspose::Zip::ZipErrorAction
strong
Enumerator
Throw 
Skip 
Retry 
InvokeErrorEvent 

◆ ZipProgressEventType

In an EventArgs type, indicates which sort of progress event is being reported. There are events for reading, events for saving, and events for extracting.

Enumerator
Adding_Started 
Adding_AfterAddEntry 
Adding_Completed 
Reading_Started 
Reading_BeforeReadEntry 
Reading_AfterReadEntry 
Reading_Completed 
Reading_ArchiveBytesRead 
Saving_Started 
Saving_BeforeWriteEntry 
Saving_AfterWriteEntry 
Saving_Completed 
Saving_AfterSaveTempArchive 
Saving_BeforeRenameTempArchive 
Saving_AfterRenameTempArchive 
Saving_AfterCompileSelfExtractor 
Saving_EntryBytesRead 
Extracting_BeforeExtractEntry 
Extracting_AfterExtractEntry 
Extracting_ExtractEntryWouldOverwrite 
Extracting_EntryBytesWritten 
Extracting_BeforeExtractAll 
Extracting_AfterExtractAll 
Error_Saving 

◆ ZlibConstants

enum class Aspose::Zip::ZlibConstants : int
strong

A bunch of constants used in the Zlib interface.

Enumerator
Z_BUF_ERROR 
Z_DATA_ERROR 
Z_STREAM_ERROR 
Z_OK 
Z_STREAM_END 
Z_NEED_DICT 
WindowBitsMax 
WindowBitsDefault 
WorkingBufferSizeDefault 
WorkingBufferSizeMin 

◆ ZlibStreamFlavor

enum class Aspose::Zip::ZlibStreamFlavor
strong

Zlib-specific flavor bits.

Enumerator
DEFLATE 
ZLIB 
GZIP