Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
em có đoạn code em muốn tải file zip và giải nén ra màn hình pc
em có đoạn code nhưng lỗi sai path ai biết hỗ trợ em với ạ
em cảm ơn
DialogResult re = MessageBox.Show("Bạn Muốn Tải Không", "Thông Báo", MessageBoxButtons.YesNo);
switch (re)
{
case DialogResult.Yes:
WebClient web = new WebClient();
web.DownloadFile("https://", ".//filenames.zip");
string sourceArchiveFileName = ".//filenames.zip";
string destinationDirectoryName = ".//Desktop"";
ZipFile.ExtractToDirectory(sourceArchiveFileName, destinationDirectoryName);
File.Delete(".//filenames.zip");
break;
Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.
Đăng nhập
- Tải file thì mình hay dùng theo clip này.
- Giải nén file nhét vào phần thông báo downloadfilecomplete theo clip này. File có mật khẩu thì tham khảo bài viết này nhé.
