TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
TheMrRAfus
NA
2
3k
Problem with extract files in c#
Jul 18 2013 4:07 AM
Hello , i´m trying to extract all contents of a .jar files with CsharpZipLib
This is my code:
string appdata = System.Environment.GetFolderPath(System.Environment.SpecialFolder.ApplicationData);
string subFolderPath = System.IO.Path.Combine(appdata, ".minecraft");
string bin = System.IO.Path.Combine(subFolderPath, "bin");
string mc = System.IO.Path.Combine(bin, "minecraft.jar");
string test = System.IO.Path.Combine(subFolderPath, "aa");
using (ZipFile zip = ZipFile.Read(mc))
{
foreach (ZipEntry e in zip)
{
e.Extract(test);
When I execute the project only extract some folders, not all, I want to extract all folders and files in the .jar
Thanks
Reply
Answers (
2
)
combining DLL
I am trying to print date time in MVC