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
santhosh saripalli
NA
45
51k
dealing with zip files in c#
Jun 23 2014 2:58 AM
i have a zip file .i copied that file directly into my solution explorer .i want to extract that file .my code is
public void UnZip()
{
Shell32.Shell sc = new Shell32.Shell();
System.IO.Directory.CreateDirectory("C:\\extractedFiles");
Shell32.Folder output = sc.NameSpace("C:\\extractedFiles");
Shell32.Folder input = sc.NameSpace("/51047839.zip");
output.CopyHere(input.Items(), 40);
}
private void button1_Click(object sender, EventArgs e)
{
UnZip();
}
but i got error: object is not found.set a reference..... how can solve it
Reply
Answers (
0
)
reading files
to save coordinates in datagridview