https://github.com/yuhexiong/compress-file-c
https://github.com/yuhexiong/compress-file-c
c-language compress-file file
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/yuhexiong/compress-file-c
- Owner: yuhexiong
- Created: 2024-05-06T07:01:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-19T14:53:55.000Z (about 1 year ago)
- Last Synced: 2025-01-20T19:14:21.944Z (6 months ago)
- Topics: c-language, compress-file, file
- Language: C
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Compress File
Use C language to compress file as .gz## Overview
- Language: C
- Compiler: GCC v13.1.0## Run
### Generate exe
```
gcc compress-file.c compressor.c -o compress-file -lz
```### Compress file
```
.\compress-file.exe {filePath} compressed-file.gz
```