Skip to content

gynt/luamemzip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

luamemzip

Lua library to create and manipulate zip files in memory

Tries to do replicate the API from this project as closely as possible: https://github.com/kuba--/zip

Usage

-- Loads the luamemzip.dll zip = require("luamemzip") content = "Test content" z = zip.zip_stream_open(nil, 6, 'w') zip.zip_entry_open(z, "test.content") zip.zip_entry_write(z, content) zip.zip_entry_close(z) data = zip.zip_stream_copy(z) zip.zip_close(z)

About

Lua library to create and manipulate zip files in memory

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors