简体   繁体   中英

C++ - Win32 API for Extracting .zip

I've been needing to extract a .zip file programmaticly and was wondering if there was an API that Win32 has to extract these types of files. I seen there is a Compress/Decompress but I have noticed that's for compressing the raw bytes instead of actually extracting it to a folder on the desktop.

There is no native Win32 API for working with .zip files (or any other archive type). You have to use a third-party library (there are plenty of open-source and commercial libraries available), or read the ZIP spec and write your own logic from scratch.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM