我需要将文档文件(.txt,.xls,.doc,.bmp,.jpg等)从一台服务器传输到另一台服务器。两台服务器都位于不同的位置。我的主应用程序在第二台服务器上运行。我必须在第一台服务器上部署此功能,任何固定文件夹中的文件(例如D:\ documents)将在任何计时器事件中定期传输到第二台服务器。
我使用的代码如下
WebClient wc = new WebClient();
wc.UploadFile("ftp://1.23.153.248//d://ftp.bmp",
@"C:\Documents and Settings\varun\Desktop\ftp.bmp");
我收到错误
unable to connect to remote server
或
sometime underlying connection was closed
你能告诉我出了什么问题。
答案 0 :(得分:1)
您的ftp是公开的吗?如果没有,你应该定义像这样的凭证
wc.Credentials = new NetworkCredential ("username","password");
在发送文件之前,尝试从ftp路径中删除d :. ftp客户端不必知道应该保存服务器文件的位置......不久就试试这个
WebClient wc = new WebClient();
wc.Credentials = new NetworkCredential ("username","password");
wc.UploadFile("ftp://1.23.153.248/ftp.bmp", @"C:\Documents and Settings\varun\Desktop\ftp.bmp");
还有专门为.net中的ftp请求创建的类,这里是来自MSDN
的示例 // Get the object used to communicate with the server.
FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://www.contoso.com/test.htm");
request.Method = WebRequestMethods.Ftp.UploadFile;
// This example assumes the FTP site uses anonymous logon.
request.Credentials = new NetworkCredential ("anonymous","janeDoe@contoso.com");
// Copy the contents of the file to the request stream.
StreamReader sourceStream = new StreamReader("testfile.txt");
byte [] fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd());
sourceStream.Close();
request.ContentLength = fileContents.Length;
Stream requestStream = request.GetRequestStream();
requestStream.Write(fileContents, 0, fileContents.Length);
requestStream.Close();
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
Console.WriteLine("Upload File Complete, status {0}", response.StatusDescription);
response.Close();
答案 1 :(得分:1)
您的FTP位置的URI似乎已关闭:您不必将所有正斜杠加倍,并且我认为不支持驱动器号。
如果你这样做:
WebClient wc = new WebClient();
wc.UploadFile("ftp://1.23.153.248/ftp.bmp",
@"C:\Documents and Settings\varun\Desktop\ftp.bmp");
该文件将被发送到设置为匿名用户的FTP位置的目录。如果您在1.23.153.248
上配置FTP服务,以便该位置为D:\
,则所有内容都应按计划运行。