Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 781 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 781 Bytes

Build Status Coverage Status GoDoc

wpress

WordPress archive format

Quick Start

// create new archive and add a file to it
archiver, _ := NewWriter("test.wpress")
archiver.AddFile("file-to-add.txt")
archiver.Close()

// create a new archive and add a directory to it
archiver, _ := NewWriter("test.wpress")
archiver.AddDirectory("/path/to/directory/to/add")
archiver.Close()

License

This project is licensed under the MIT open source license.