본문 바로가기
프로그래밍언어/C++

[C++] zip/unzip라이브러리 이용, 압축 해제

by 연어바케트 2020. 7. 21.
반응형

zip/unzip 압축 해제

CFileFind file;
bool bFindFile = file.FindFile(_T("C:\\Users\\test"));
CString strfileFolder;
if( !bFindFile )
{
   CString str = _T("C:\\Users\\test");
   CreateDirectory(str, NULL);
}

CString filename = _T("C:\\Users\\testzip.zip");
HZIP hz = OpenZip( filename, 0 );
ZIPENTRY ze;
GetZipItem( hz, -1, &ze);
int numitems = ze.index;

CloseZip(hz);
RemoveDirectory(str);
반응형

댓글