| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1093 人关注过本帖
标题:需要实现用FTP把文件上传到FTP的服务器上
只看楼主 加入收藏
itsky8
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2008-2-19
收藏
 问题点数:0 回复次数:1 
需要实现用FTP把文件上传到FTP的服务器上
需要实现用FTP把文件上传到FTP的服务器上,试了以下的方式都不行,请问在C#该如何写呢?  代码如下:

private void MainForm_Load(object sender, System.EventArgs e)
        {
            
            System.Diagnostics.Process proc = new System.Diagnostics.Process();
            proc.EnableRaisingEvents=false;
            proc.StartInfo.UseShellExecute = true;
            proc.StartInfo.RedirectStandardOutput = true;
            proc.StartInfo.FileName="ftp.exe";
            proc.StartInfo.Arguments="open ftpserver";
            proc.StartInfo.Arguments="username";
            proc.StartInfo.Arguments="password";
            proc.StartInfo.Arguments="prompt off";
            proc.StartInfo.Arguments="cd folder-in-ftp-server";
            proc.StartInfo.Arguments="lcd folder-in-local";
            proc.StartInfo.Arguments="mput *.jpg";
            proc.StartInfo.Arguments="bye";
            proc.StartInfo.CreateNoWindow = true;
            proc.Start();
            proc.WaitForExit();
            Close();
}
搜索更多相关主题的帖子: 服务器 FTP proc StartInfo 文件 
2008-02-21 11:49
cobby
Rank: 1
等 级:新手上路
威 望:1
帖 子:565
专家分:0
注 册:2007-7-11
收藏
得分:0 
private void Upload(string filename)
{
FileInfo fileInf = new FileInfo(filename);
string uri = "ftp://" + ftpServerIP + "/" + fileInf.Name;
FtpWebRequest reqFTP;
// 根据uri创建FtpWebRequest对象
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerIP + "/" + fileInf.Name));
// ftp用户名和密码
reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);
// 默认为true,连接不会被关闭
// 在一个命令之后被执行
reqFTP.KeepAlive = false;
// 指定执行什么命令
reqFTP.Method = WebRequestMethods.Ftp.UploadFile;
// 指定数据传输类型
reqFTP.UseBinary = true;
// 上传文件时通知服务器文件的大小
reqFTP.ContentLength = fileInf.Length;
// 缓冲大小设置为2kb
int buffLength = 2048;
byte[] buff = new byte[buffLength];
int contentLen;
// 打开一个文件流 () 去读上传的文件
FileStream fs = fileInf.OpenRead();
try
{
// 把上传的文件写入流
Stream strm = reqFTP.GetRequestStream();
// 每次读文件流的2kb
contentLen = fs.Read(buff, 0, buffLength);
// 流内容没有结束
while (contentLen != 0)
{
// 把内容从file stream 写入 upload stream
strm.Write(buff, 0, contentLen);
contentLen = fs.Read(buff, 0, buffLength);
}
// 关闭两个流
strm.Close();
fs.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Upload Error");
}
}

努力成为菜鸟!
2008-02-22 11:51
快速回复:需要实现用FTP把文件上传到FTP的服务器上
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.037122 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved