我搜索了与我的问题有些相关的问题/答案。与我最相关的一个导致在使用C#WebClient类进行文件下载后清空文件。由于我的WebClient问题没有涉及清空文件,我决定创建一个新问题。
我正在尝试使用WebClient类进行FTP文件下载的一些C#代码的例外。该消息表明它是错误404(找不到文件)。我给它的网址有正确的路径信息。因此,为了获得更多洞察力,我研究了使用WebException类来揭示更多信息。为什么没有找到该文件。但是,它的说明有点过于神秘。因此,由于我刚接触C#中的FTP下载,让我展示我的代码,也许有人可以看到代码中可能缺少的内容并导致404错误。如果没有,我将回过头来弄清楚如何使用WebException。谢谢你的帮助。
private void Form1_Load(object sender, EventArgs e)
{
string remoteUri = "<myWebsite>/public_html/";
string fileName = "<myTargetFile>", myStringWebResource = null;
// Create a new WebClient instance.
WebClient myWebClient = new WebClient();
myWebClient.Credentials = new NetworkCredential("<username>", "<password>");
// Concatenate the domain with the Web resource filename.
myStringWebResource = remoteUri + fileName;
Console.WriteLine("Downloading File \"{0}\" from \"{1}\" .......\n\n", fileName, myStringWebResource);
// Download the Web resource and save it into the current filesystem folder.
myWebClient.DownloadFile(myStringWebResource, fileName);
Console.WriteLine("Successfully Downloaded File \"{0}\" from \"{1}\"", fileName, myStringWebResource);
Console.WriteLine("\nDownloaded file saved in the following file system folder:\n\t" + Application.StartupPath);
}