欢迎来到天天文库
浏览记录
ID:17637559
大小:54.00 KB
页数:15页
时间:2018-09-04
《c#实现ftp方法(一)-ftpwebrequest》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、c#实现FTP方法(一)-FtpWebRequestclassFTP_Class{stringftpServerIP;stringftpUserID;stringftpPassword;FtpWebRequestreqFTP;publicvoidConnecttest(stringftpServerIP,stringftpUserID,stringftpPassword){//根据uri创建FtpWebRequest对象reqFTP=(FtpWebRequest)FtpWebRequest.Create(newUri("ftp://"+ftpServerIP))
2、;//指定数据传输类型reqFTP.UseBinary=true;//ftp用户名和密码reqFTP.Credentials=newNetworkCredential(ftpUserID,ftpPassword);}#region连接//////连接//////privatevoidConnect(Stringpath)//连接ftp{//根据uri创建FtpWebRequest对象reqFTP=(FtpWebRequest)FtpWebRequest.Create(new
3、Uri(path));//指定数据传输类型reqFTP.UseBinary=true;//ftp用户名和密码reqFTP.Credentials=newNetworkCredential(ftpUserID,ftpPassword);}#endregion#regionftp登录信息//////ftp登录信息//////ftpServerIP///ftpUserID///4、pPassword">ftpPasswordpublicvoidFtpUpDown(stringftpServerIP,stringftpUserID,stringftpPassword){this.ftpServerIP=ftpServerIP;this.ftpUserID=ftpUserID;this.ftpPassword=ftpPassword;}#endregion#region获取文件列表//////获取文件列表/////////5、me="WRMethods">///privatestring[]GetFileList(stringpath,stringWRMethods)//上面的代码示例了如何从ftp服务器上获得文件列表{string[]downloadFiles;StringBuilderresult=newStringBuilder();try{Connect(path);reqFTP.Method=WRMethods;WebResponseresponse=reqFTP.GetResponse();StreamReaderre6、ader=newStreamReader(response.GetResponseStream(),System.Text.Encoding.UTF8);//中文文件名stringline=reader.ReadLine();while(line!=null){result.Append(line);result.Append("");line=reader.ReadLine();}//toremovethetrailing''result.Remove(result.ToString().LastIndexOf(''),1);reader.Clos7、e();response.Close();returnresult.ToString().Split('');}catch(Exceptionex){System.Windows.Forms.MessageBox.Show(ex.Message);downloadFiles=null;returndownloadFiles;}}publicstring[]GetFileList(stringpath)//上面的代码示例了如何从ftp服务器上获得文件列表{returnGetFileList("ftp://"+ftpServerIP+"/"+path,WebRe8、questMethods
4、pPassword">ftpPasswordpublicvoidFtpUpDown(stringftpServerIP,stringftpUserID,stringftpPassword){this.ftpServerIP=ftpServerIP;this.ftpUserID=ftpUserID;this.ftpPassword=ftpPassword;}#endregion#region获取文件列表//////获取文件列表/////////5、me="WRMethods">///privatestring[]GetFileList(stringpath,stringWRMethods)//上面的代码示例了如何从ftp服务器上获得文件列表{string[]downloadFiles;StringBuilderresult=newStringBuilder();try{Connect(path);reqFTP.Method=WRMethods;WebResponseresponse=reqFTP.GetResponse();StreamReaderre6、ader=newStreamReader(response.GetResponseStream(),System.Text.Encoding.UTF8);//中文文件名stringline=reader.ReadLine();while(line!=null){result.Append(line);result.Append("");line=reader.ReadLine();}//toremovethetrailing''result.Remove(result.ToString().LastIndexOf(''),1);reader.Clos7、e();response.Close();returnresult.ToString().Split('');}catch(Exceptionex){System.Windows.Forms.MessageBox.Show(ex.Message);downloadFiles=null;returndownloadFiles;}}publicstring[]GetFileList(stringpath)//上面的代码示例了如何从ftp服务器上获得文件列表{returnGetFileList("ftp://"+ftpServerIP+"/"+path,WebRe8、questMethods
5、me="WRMethods">///privatestring[]GetFileList(stringpath,stringWRMethods)//上面的代码示例了如何从ftp服务器上获得文件列表{string[]downloadFiles;StringBuilderresult=newStringBuilder();try{Connect(path);reqFTP.Method=WRMethods;WebResponseresponse=reqFTP.GetResponse();StreamReaderre
6、ader=newStreamReader(response.GetResponseStream(),System.Text.Encoding.UTF8);//中文文件名stringline=reader.ReadLine();while(line!=null){result.Append(line);result.Append("");line=reader.ReadLine();}//toremovethetrailing''result.Remove(result.ToString().LastIndexOf(''),1);reader.Clos
7、e();response.Close();returnresult.ToString().Split('');}catch(Exceptionex){System.Windows.Forms.MessageBox.Show(ex.Message);downloadFiles=null;returndownloadFiles;}}publicstring[]GetFileList(stringpath)//上面的代码示例了如何从ftp服务器上获得文件列表{returnGetFileList("ftp://"+ftpServerIP+"/"+path,WebRe
8、questMethods
此文档下载收益归作者所有