Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cross platform file archiving

I need to archive several files into one file (like a tar file does) programmatically using C++ on both Linux and Windows. It doesn't necessarily need to be a tar file, any compressed/uncompressed file format that can be used on both OS' will do. Any ideas where to look?

like image 659
oggmonster Avatar asked Jan 19 '23 04:01

oggmonster


1 Answers

See MiniZip library, a pure C++ cross platform Windows/linux.

like image 88
CharlesB Avatar answered Jan 25 '23 11:01

CharlesB