# Quazip_demo **Repository Path**: petergg/quazip_demo ## Basic Information - **Project Name**: Quazip_demo - **Description**: QT5+ 压缩和解压 - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-02-11 - **Last Updated**: 2023-03-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 压缩解压文 ```c++ //Compress the current directory of the program as **.zip JlCompress::compressDir("D:/myTest.zip", "D:/testzipdir1"); //Unzip mytest.zip to D:/myTest JlCompress::extractDir("D:/myTest.zip", "D:/myTest"); ```