使用WebCLient从网站下载文本文件

时间:2019-07-17 13:30:21

标签: c# web webclient

我们最近将工作中的ftp站点从ftp://address切换为https://ftp.address,现在我检索文件的应用程序无法下载具有预期内容的文件。

我以前使用过FtpWebRequest,它已经工作了很多年。 我现在正尝试使用WebClient,它会下载文件,但不是我需要的文本文件。相反,文件的内容原来是一些HTML。

之前有效的

FtpWebRequest request = (FtpWebRequest)WebRequest.Create(getAppSetting("URI") + getAppSetting("FilePath") + args[0].ToString());

request.Method = WebRequestMethods.Ftp.DownloadFile;

setCredentials(request);

FtpWebResponse response = (FtpWebResponse)request.GetResponse();

Changed code to handle https:

System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;

WebClient request = new WebClient();                  

setCredentials(request);

string file = request.DownloadString(getAppSetting("URI") + getAppSetting("FilePath") + args[0].ToString());

结果是一个已下载但包含HTML的文件。我希望将文件的内容保存在要从中提取的网站上。

1 个答案:

答案 0 :(得分:0)

经过几周的研究,我终于找到了我需要做的事情,答案很简单。我发现我们的新网站使用SSH,因此我通过我的nugent包将SSH.Net安装到了Visual Studio,并添加了“使用Renci.SshNet;”。我使用以下代码将文件下载到本地驱动器:

using (SftpClient sftp = new SftpClient("ftp.website.com", 22,"username", "password")
{
   sftp.Connect();

   if (sftp.IsConnected)
   {
     using (Filestream fs = new FileStream("Output.txt", FileMode.Create))
      {
        sftp.DownloadFile("/file/Client/Input.txt", fs);
      }
   } 

   sftp.Disconnect();
 }

这很好用。我的文件不再下载为HTML文件,并且得到了所需的输出。我希望这可以节省很多时间。