DIZipWriter is a Delphi component to create PKZip-compatible ZIP archives. Archive output is completely stream-based and works with any TStream descendant.
DIZipWriter therefore direclty writes to files (TFileStream) , memory (TMemoryStream), or even database BLOBs (TBlobStream). Convenience functions to work files and file based archives are available.
DIZipWriter's functionality is contained in its main class, TDIZipWriter, with methods to create new ZIP archives and write various types of data like:
Files
Streams
Strings
Memory Buffers
DIZipWriter allows applications to write to an archive entry as many times as they seem necessary. This allows to create the new archive entry even before the first chunk of data is available. As data flows in (for example from a slow download), they can write it in small chunks at a time.
DIZipWriter therefore direclty writes to files (TFileStream) , memory (TMemoryStream), or even database BLOBs (TBlobStream). Convenience functions to work files and file based archives are available.
DIZipWriter's functionality is contained in its main class, TDIZipWriter, with methods to create new ZIP archives and write various types of data like:
Files
Streams
Strings
Memory Buffers
DIZipWriter allows applications to write to an archive entry as many times as they seem necessary. This allows to create the new archive entry even before the first chunk of data is available. As data flows in (for example from a slow download), they can write it in small chunks at a time.