How can I extract .ZIP/.RAR into a folder/.JAR (IN C++)

Krazyshank

New Member
I'm making a program, not tell what it is but for it to do what I want, I need to be able to have the program extract .RARs and .ZIPs into regular folders AND .Jar files. I'm using Visual C++ 2010 so can anyone help me? Thanks.

I was thinking of having a consol log where the program will write the tasks it needs to complete temporarily. Then when the user hits the button to start, the program will look at what is written in the GUI consol log and exectute what is needed to be moved/extracted.

Example of a command written to the console would be:
[FODLER LOCATION HERE]SomeShit.zip->[FOLDER LOCATION HERE]Minecraft.jar

So the app would know that it needs to take that file and extract it to minecraft.jar.

Thanks!
 

S.T.A.R.S.

banned
It's not easy task to make something like that.You can go to www.7-zip.org and there you can find C# SDK for 7-zip.That source code will help you in making this.Still it won't be easy at all.
 
Top