Skip to content

thechampagne/zip-d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zip-d

D binding for a portable, simple zip library.

Download

DUB

dub add zip

Example

import zip;

void main()
{
  zip_t* z = zip_open("/tmp/d.zip", 6, 'w');
  scope(exit) zip_close(z);

  zip_entry_open(z, "test");
  scope(exit) zip_entry_close(z);

  string content = "test content";
  zip_entry_write(z, content.ptr, content.length);
}

References

License

This repo is released under the MIT License.

About

D binding for a portable, simple zip library.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages