일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- parameter
- Binary
- Encapusulation
- memory
- stream
- flutter
- SERIAL
- preprocessing
- Pointer
- Contour
- atmega328
- Unity
- APP
- Android
- inheritance
- length
- compare
- Read
- wpf
- Barcode
- digitalRead
- sensor
- mfc
- Class
- file access
- Overloading
- java
- aduino
- UNO
- public
Archives
- Today
- Total
폴크(FOLC)
MFC 테크닉 - Zip 파일 생성 ( info-zip ) 본문
728x90
반응형
# Local 폴더를 Zip 파일로 생성
> ziplib 라이브러리 이용 ( www.info-zip.org )
> BSD license
# 소스 코드
bool CFileMakeZip::FileComp(CString src, CString dst)
{
// 생성
HZIP hz = CreateZip(dst, 0);
if (hz == NULL)
{
AfxMessageBox(_T("Error: Failed to Create Zip"));
}
// 추가 - 압축
ZRESULT zr = ZipAdd(hz, src, src);
if (zr != ZR_OK)
{
zr = CloseZip(hz);
return false;
}
// 닫기
zr = CloseZip(hz);
if (zr != ZR_OK)
{
return false;
}
return true;
}
728x90
반응형
사업자 정보 표시
사업자 등록번호 : -- | TEL : --
'C, C++, MFC > C, C++, MFC 테크닉' 카테고리의 다른 글
MFC 테크닉 - 스크린 캡쳐 ( CImage ) (0) | 2021.12.24 |
---|---|
MFC 테크닉 - UnZip 파일 복원 ( info-zip ) (0) | 2021.12.22 |
MFC 테크닉 - FTP FileDownload ( FtpConnection (0) | 2021.12.21 |
MFC 테크닉 - FTP FileUpload ( FtpConnection ) (0) | 2021.12.21 |
MFC 테크닉 - NetworkDrive (0) | 2021.12.19 |