Files
ipars-doc/pages/en/ZipManager_EN.md
T
Ilia Miheev 17eeb0ccb8 first commit
2025-10-21 21:09:30 +03:00

34 lines
884 B
Markdown

### Working with ZipManager
The ZipManager class is used for archiving a folder of files. It takes only one argument — the compression level for the files.
'none' => No compression
'normal' => Normal compression
'hard' => Increased compression
'maximum' => Maximum compression
```py
from ipars import ZipManager
z = ZipManager()
```
### Brief Overview of ZipManager Methods
1. The **zip_file** method is used to archive a single file. It takes the path to the source file and the path to the output file.
2. The **zip_folder** method is used to archive a directory. It takes the path to the source directory and the path to the output file.
### Example of Using ZipManager
```py
from ipars import ZipManager
z = ZipManager(compression='maximum')
z.zip_file('./your_file.txt', 'file_archive_maximum.zip')
z.zip_folder('./your_folder/', 'folder_archive_maximum.zip')
```