https://github.com/rillis/zip
Zip/Unzip files
https://github.com/rillis/zip
api maven unzip zip
Last synced: 4 months ago
JSON representation
Zip/Unzip files
- Host: GitHub
- URL: https://github.com/rillis/zip
- Owner: rillis
- License: apache-2.0
- Created: 2020-05-04T22:06:45.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-05T01:00:57.000Z (about 5 years ago)
- Last Synced: 2025-01-30T13:32:16.821Z (5 months ago)
- Topics: api, maven, unzip, zip
- Language: Java
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ZIP

```xml
com.github.rillis
zip
1.1.0```
## Docs
**Classes:**
com.github.rillis.Zip**Methods:**
```java
//Zip multiple files/folders. Returns .zip file itself.
Zip.zip(File[] fileToZip, File finalZipFile) : File
throws FileNotFoundException, IOException.//Unzip to destination folder, create folder if it doesn't exists. Returns destFolder.
Zip.unZip(File zipFile, File destFolder) : File
throws FileNotFoundException, IOException.
```**Config:**
```java
//Buffer size
int Zip.BUFFER_SIZE = 4096
```