# Qt7zip **Repository Path**: qtlibs/Qt7zip ## Basic Information - **Project Name**: Qt7zip - **Description**: wrapper for 7z binary - **Primary Language**: C++ - **License**: LGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2020-04-11 - **Last Updated**: 2023-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Qt7zip #### Description wrapper for 7z binary #### Instructions 1. The static method provided by the library sets the 7z path to `7zip/x86` by default. If you need to change the 7z path, instantiate an instance and pass the 7z path to the constructor 2. Examples of static methods ``` //file/files/folder/wildcard bool succeed = Qt7zip::createArchive("archive.7z", "file.txt"); ``` 3. Examples of instantiation methods ``` Qt7zip sevenZip("path/to/7zip"); bool succeed = sevenZip.add("file.txt").toArchive("archive.7z"); ``` #### Contribution 1. Fork the repository 2. Create Feat_xxx branch 3. Commit your code 4. Create Pull Request