我有以下代碼用於從服務器下載文件,該文件適用於文本文件。代碼取自MSDN示例:ftp損壞的exe和dll文件(C#)
public void DownloadFile(string serverPath, string localPath)
{
try
{
FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://" + serverPath);
request.Method = WebRequestMethods.Ftp.DownloadFile;
request.Credentials = new NetworkCredential(_domain + "\\" + _username, _password);
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();
StreamReader reader = new StreamReader(responseStream);
string contents = reader.ReadToEnd();
File.WriteAllText(localPath, contents);
reader.Close();
response.Close();
}
catch (WebException ex)
{
string exMsg = string.Empty;
//add more error codes
FtpWebResponse response = (FtpWebResponse)ex.Response;
MessageBox.Show(response.StatusCode.ToString());
switch(response.StatusCode) {
case FtpStatusCode.NotLoggedIn:
exMsg = "wrong password";
break;
case FtpStatusCode.ActionNotTakenFileUnavailable:
exMsg = "file you are trying to load is not found";
break;
default:
exMsg = "The server is inaccessible or taking too long to respond.";
break;
}
throw new Exception(exMsg);
}
return;
}
但是,它會破壞dll和exe。任何想法是什麼是這裏的罪魁禍首?
可能是編碼在File.WriteAllText中是錯誤的... WriteAllText的默認編碼是utf8 –