How to download .zip file format using c# code?
Here is the code, i am using to download. Just to highlight, If i download .txt file, it works fine. If i download .zip file, it downloads the .zip file but i can't open this. It complains that .zip is in incorrect format. I have doubt in how i am writing back the file on local drive.
Help?
string ftpServerIP = FTPServer;
string ftpUserID = FTPUser;
string ftpPassword = FTPPwd;
FileInfo fileInf = new FileInfo(FileName);
string uri = "ftp://" + ftpServerIP + "/" + fileInf.Name;
FtpWebRequest reqFTP = (FtpWebRequest)FtpWebRequest.Create(uri); //new Uri("ftp://" + ftpServerIP + DestinationFolder + fileInf.Name));
reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);
reqFTP.EnableSsl = true;
reqFTP.KeepAlive = false;
reqFTP.UseBinary = true;
//reqFTP.UsePassive = true;
reqFTP.Method = WebRequestMethods.Ftp.DownloadFile;
ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback(AcceptAllCertifications);
//Stream strm = reqFTP.GetRequestStream();
StreamReader reader = new StreamReader(reqFTP.GetResponse().GetResponseStream());
StreamWriter writer = new StreamWriter(Path.Combine(FolderToWriteFiles, FileName), false);
writer.Write(reader.ReadToEnd());
return true;
Answer to the updated question:
The way you are saving the stream to disk is wrong. You are treating the stream as a character sequence, which corrupts the ZIP file in the process. Open a
FileStream
instead of aStreamWriter
and copy theGetResponseStream()
return value directly to thatFileStream
using something like myCopyStream
function from here.A good alternative for unzipping is http://www.codeplex.com/DotNetZip.
If you need to download SSH or SSL encryption then I recommend this component: http://www.weonlydo.com/index.asp?showform=FtpDLX.NET. Also great for plain FTP.
For all of you who found these answers unhelpful, I found a better answer here:
Downloading ZIP file from FTP and copying to folder within website
The .NET Framework's System.Net namespace offers the FTPWebRequest class. Here's an article explaining how to use it:
http://www.vcskicks.com/download-file-ftp.php
You would probably want to make use of the FtpWebRequest class to download the .zip file, then the System.IO.Packaging class to extract its contents.