An open API service indexing awesome lists of open source software.

https://github.com/ikremniou/7z-assembly

Light documentation on the 7-zip(7z) archiver format plugins
https://github.com/ikremniou/7z-assembly

7z 7z-archives 7zip archive documentation zip

Last synced: about 1 year ago
JSON representation

Light documentation on the 7-zip(7z) archiver format plugins

Awesome Lists containing this project

README

          

# 7-Zip (7z) Archiver Plugins

This repository contains source code for 2 basic archiver handlers that extend the functionality of the 7-Zip File Manager. Below, you can find details on the archive formats:

Criteria | SZ | SZE
-------- | ------ | -------
Name | Sample ZIP Archiver | Sample ZIP Archiver Extended
Format | Returns file entities. Three files named `sampleX.txt` with the text `sampleX`. File `sample3.txt` is in the subdirectory named `someDir`. Finally, the `child.sz` archive creates endless recursion. | Files are encoded into the "archive" using text format: `{fileName.ext\|size}fileContentOfSize...`
Extensions | .sz | .sze, .szex
Signature | Binary "SZ" | Binary "SE"

Documentation is hosted on [*GitHub Pages*](https://ikremniou.github.io/7z-assembly/)

Items in progress:
- [x] Implement the SZE archive
- [x] Restructure documentation in the `Plugin Interface` section
- [ ] Implement real-word example (probably for some zlib users like `rpa`)