-
-
Notifications
You must be signed in to change notification settings - Fork 3
PKZip.ZipWriter.SetEntryContent
Andrew Lambert edited this page Oct 28, 2023
·
1 revision
Sub SetEntryContent(Path As String, Content As FolderItem)
Sub SetEntryContent(Path As String, Content As MemoryBlock)
Sub SetEntryContent(Path As String, Content As Readable, Length As UInt32)
Name | Type | Comment |
---|---|---|
Path | String | The entry to be commented upon. |
Content | FolderItem | The FolderItem to read file content from. |
Name | Type | Comment |
---|---|---|
Path | String | The entry to be commented upon. |
Content | MemoryBlock | The new file content of the entry. |
Name | Type | Comment |
---|---|---|
Path | String | The entry to be commented upon. |
Content | Readable | The stream to read file content from. |
Length | UInt32 | The purported length in bytes of the file content. |
Sets the file contents for the entry, overwriting the previous content. The path of the entry does not change, only the contents.
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.