0

我想使用 webclient 的 DownloadFile 功能,但我使用断点来查看哪一行 O 出错了。它只是在下载文件时捕获块。

            try
            {
                string myStringWebSource = this.curFtpIp + FtpCuPath + "/" + FtpdfName + "/" + this.lbl.Text;

                WebClient client = new WebClient();
                client.Credentials = new NetworkCredential(this.FtpUserID, this.FtpPassword);
                client.DownloadFile(myStringWebSource, SaveFile);
            }
            catch (Exception ex)
            { MessageBox.Show(ex.Message); }
            finally { }
4

1 回答 1

1

我已经解决了我自己的问题。我发现我设置了错误的第二个参数。我只是使用“SaveFile”,它是保存路径,但它应该是一个文件名。所以,我只是修改了 SaveFile 并且它可以工作。

WebClient.DownloadFile MSDN

于 2013-03-09T07:51:00.867 回答