亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > C# > 正文

C#版ftp方法實現類的代碼

2020-01-24 03:49:13
字體:
來源:轉載
供稿:網友
/* 
FTPFactory.cs 
Better view with tab space=4 
Written by Jaimon Mathew (jaimonmathew@rediffmail.com) 
Rolander,Dan (Dan.Rolander@marriott.com) has modified the 
download 
method to cope with file name with path information. He also 
provided 
the XML comments so that the library provides Intellisense 
descriptions. 
use the following line to compile 
csc /target:library /out:FTPLib.dll /r:System.DLL FTPFactory.cs 
*/ 
using System; 
using System.Threading; 
using System.Net; 
using System.IO; 
using System.Text; 
using System.Net.Sockets; 
using System.Configuration; 
namespace AudioCollect 

/// <summary> 
/// FTPFactory 的摘要說明。 
/// </summary> 
public class FTPFactory 

static readonly log4net.ILog log = log4net.LogManager.GetLogger("log4net"); 
private string 
remoteHost,remotePath,remoteUser,remotePass,mes; 
private int remotePort,bytes; 
private Socket clientSocket; 
private int retValue; 
private Boolean debug; 
private Boolean logined; 
private string reply; 
private static int BLOCK_SIZE = 512; 
Byte[] buffer = new Byte[BLOCK_SIZE]; 
Encoding ASCII = Encoding.ASCII; 
public FTPFactory() 

string FTPRemoteIP = ConfigurationSettings.AppSettings["FTPRemoteIP"]; 
int FTPRemotePort = Convert.ToInt32( ConfigurationSettings.AppSettings["FTPRemotePort"] ); 
string FTPUser = ConfigurationSettings.AppSettings["FTPUser"]; 
string FTPPassword = ConfigurationSettings.AppSettings["FTPPassword"]; 
remoteHost = FTPRemoteIP; 
remotePath = "."; 
remoteUser = FTPUser; 
remotePass = FTPPassword; 
remotePort =FTPRemotePort; 
debug = false; 
logined = false; 

/// 
/// Set the name of the FTP server to connect to. 
/// 
/// Server name 
public void setRemoteHost(string remoteHost) 

this.remoteHost = remoteHost; 

/// 
/// Return the name of the current FTP server. 
/// 
/// Server name 
public string getRemoteHost() 

return remoteHost; 

/// 
/// Set the port number to use for FTP. 
/// 
/// Port number 
public void setRemotePort(int remotePort) 

this.remotePort = remotePort; 

/// 
/// Return the current port number. 
/// 
/// Current port number 
public int getRemotePort() 

return remotePort; 

/// 
/// Set the remote directory path. 
/// 
/// The remote directory path 
public void setRemotePath(string remotePath) 

this.remotePath = remotePath; 

/// 
/// Return the current remote directory path. 
/// 
/// The current remote directory path. 
public string getRemotePath() 

return remotePath; 

/// 
/// Set the user name to use for logging into the remote server. 
/// 
/// Username 
public void setRemoteUser(string remoteUser) 

this.remoteUser = remoteUser; 

/// 
/// Set the password to user for logging into the remote server. 
/// 
/// Password 
public void setRemotePass(string remotePass) 

this.remotePass = remotePass; 

/// 
/// Return a string array containing the remote directory's file list. 
/// 
/// 
/// 
public string[] getFileList(string mask) 

if(!logined) 

login(); 

Socket cSocket = createDataSocket(); 
sendCommand("NLST " + mask); 
if(!(retValue == 150 || retValue == 125)) 

throw new IOException(reply.Substring(4)); 

mes = ""; 
Thread.Sleep(700); 
while(true) 

if(cSocket.Connected) 

int bytes = cSocket.Receive(buffer, buffer.Length, 0); 
mes += ASCII.GetString(buffer, 0, bytes); 
if(bytes < buffer.Length) 

break; 


else 

log.Info("socket 連接斷了!"); 


log.Info(mes); 
char[] seperator = {'/n'}; 
string[] mess = mes.Split(seperator); 
foreach(string fileName in mess) 

log.Info(fileName); 

cSocket.Close(); 
readReply(); 
if(retValue != 226) 

throw new IOException(reply.Substring(4)); 

return mess; 

public string[] getFileList() 

if(!logined) 

login(); 

Socket cSocket = createDataSocket(); 
sendCommand("LIST "); 
if(!(retValue == 150 || retValue == 125)) 

throw new IOException(reply.Substring(4)); 

mes = ""; 
while(true) 

int bytes = cSocket.Receive(buffer, buffer.Length, 0); 
mes += ASCII.GetString(buffer, 0, bytes); 
if(bytes < buffer.Length) 

break; 


log.Info(mes); 
char[] seperator = {'/n'}; 
string[] mess = mes.Split(seperator); 
cSocket.Close(); 
readReply(); 
if(retValue != 226) 

throw new IOException(reply.Substring(4)); 

return mess; 

/// 
/// Return the size of a file. 
/// 
/// 
/// 
public long getFileSize(string fileName) 

if(!logined) 

login(); 

sendCommand("SIZE " + fileName); 
long size=0; 
if(retValue == 213) 

size = Int64.Parse(reply.Substring(4)); 

else 

throw new IOException(reply.Substring(4)); 

return size; 

/// 
/// Login to the remote server. 
/// 
public void login() 

clientSocket = new 
Socket(AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp); 
IPEndPoint ep = new 
IPEndPoint(Dns.Resolve(remoteHost).AddressList[0], remotePort); 
try 

clientSocket.Connect(ep); 

catch(Exception) 

throw new IOException("Couldn't connect to remote server"); 

readReply(); 
if(retValue != 220) 

close(); 
throw new IOException(reply.Substring(4)); 

if(debug) 
Console.WriteLine("USER "+remoteUser); 
sendCommand("USER "+remoteUser); 
if( !(retValue == 331 || retValue == 230) ) 

cleanup(); 
throw new IOException(reply.Substring(4)); 

if( retValue != 230 ) 

if(debug) 
Console.WriteLine("PASS xxx"); 
sendCommand("PASS "+remotePass); 
if( !(retValue == 230 || retValue == 202) ) 

cleanup(); 
throw new IOException(reply.Substring(4)); 


logined = true; 
Console.WriteLine("Connected to "+remoteHost); 
chdir(remotePath); 

/// 
/// If the value of mode is true, set binary mode for downloads. 
/// Else, set Ascii mode. 
/// 
/// 
public void setBinaryMode(Boolean mode) 

if(mode) 

sendCommand("TYPE I"); 

else 

sendCommand("TYPE A"); 

if (retValue != 200) 

throw new IOException(reply.Substring(4)); 


/// 
/// Download a file to the Assembly's local directory, 
/// keeping the same file name. 
/// 
/// 
public void download(string remFileName) 

download(remFileName,"",false); 

/// 
/// Download a remote file to the Assembly's local directory, 
/// keeping the same file name, and set the resume flag. 
/// 
/// 
/// 
public void download(string remFileName,Boolean resume) 

download(remFileName,"",resume); 

/// 
/// Download a remote file to a local file name which can include 
/// a path. The local file name will be created or overwritten, 
/// but the path must exist. 
/// 
/// 
/// 
public void download(string remFileName,string locFileName) 

download(remFileName,locFileName,false); 

/// 
/// Download a remote file to a local file name which can include 
/// a path, and set the resume flag. The local file name will be 
/// created or overwritten, but the path must exist. 
/// 
/// 
/// 
/// 
public void download(string remFileName,string 
locFileName,Boolean resume) 

if(!logined) 

login(); 

setBinaryMode(false); 
Console.WriteLine("Downloading file "+remFileName+" from "+remoteHost + "http://"+remotePath); 
if (locFileName.Equals("")) 

locFileName = remFileName; 

if(!File.Exists(locFileName)) 

Stream st = File.Create(locFileName); 
st.Close(); 

FileStream output = new 
FileStream(locFileName,FileMode.Create); 
Socket cSocket = createDataSocket(); 
long offset = 0; 
if(resume) 

offset = output.Length; 
if(offset > 0 ) 

setBinaryMode(false); 
sendCommand("REST "+offset); 
if(retValue != 350) 

//throw new IOException(reply.Substring(4)); 
//Some servers may not support resuming. 
offset = 0; 


if(offset > 0) 

if(debug) 

Console.WriteLine("seeking to " + offset); 

long npos = output.Seek(offset,SeekOrigin.Begin); 
Console.WriteLine("new pos="+npos); 


sendCommand("RETR " + remFileName); 
if(!(retValue == 150 || retValue == 125)) 

throw new IOException(reply.Substring(4)); 

while(true) 

bytes = cSocket.Receive(buffer, buffer.Length, 0); 
output.Write(buffer,0,bytes); 
if(bytes <= 0) 

break; 


output.Close(); 
if (cSocket.Connected) 

cSocket.Close(); 

Console.WriteLine(""); 
readReply(); 
if( !(retValue == 226 || retValue == 250) ) 

throw new IOException(reply.Substring(4)); 


/// 
/// Upload a file. 
/// 
/// 
public void upload(string fileName) 

upload(fileName,false); 

/// 
/// Upload a file and set the resume flag. 
/// 
/// 
/// 
public void upload(string fileName,Boolean resume) 

if(!logined) 

login(); 

Socket cSocket = createDataSocket(); 
long offset=0; 
if(resume) 

try 

setBinaryMode(true); 
offset = getFileSize(fileName); 

catch(Exception) 

offset = 0; 


if(offset > 0 ) 

sendCommand("REST " + offset); 
if(retValue != 350) 

//throw new IOException(reply.Substring(4)); 
//Remote server may not support resuming. 
offset = 0; 


/*==========================*/ 
sendCommand("STOR "+Path.GetFileName(fileName)); 
if( !(retValue == 125 || retValue == 150) ) 

throw new IOException(reply.Substring(4)); 

// open input stream to read source file 
FileStream input = new FileStream(fileName,FileMode.Open); 
if(offset != 0) 

if(debug) 

Console.WriteLine("seeking to " + offset); 

input.Seek(offset,SeekOrigin.Begin); 

Console.WriteLine("Uploading file "+fileName+" to "+remotePath); 
while ((bytes = input.Read(buffer,0,buffer.Length)) > 0) 

cSocket.Send(buffer, bytes, 0); 

input.Close(); 
Console.WriteLine(""); 
if (cSocket.Connected) 

cSocket.Close(); 

readReply(); 
if( !(retValue == 226 || retValue == 250) ) 

throw new IOException(reply.Substring(4)); 


/// 
/// Delete a file from the remote FTP server. 
/// 
/// 
public void deleteRemoteFile(string fileName) 

if(!logined) 

login(); 

sendCommand("DELE "+fileName); 
if(retValue != 250) 

throw new IOException(reply.Substring(4)); 


/// 
/// Rename a file on the remote FTP server. 
/// 
/// 
/// 
public void renameRemoteFile(string oldFileName,string 
newFileName) 

if(!logined) 

login(); 

sendCommand("RNFR "+oldFileName); 
if(retValue != 350) 

throw new IOException(reply.Substring(4)); 

// known problem 
// rnto will not take care of existing file. 
// i.e. It will overwrite if newFileName exist 
sendCommand("RNTO "+newFileName); 
if(retValue != 250) 

throw new IOException(reply.Substring(4)); 


/// 
/// Create a directory on the remote FTP server. 
/// 
/// 
public void mkdir(string dirName) 

if(!logined) 

login(); 

sendCommand("MKD "+dirName); 
if(retValue != 250) 

throw new IOException(reply.Substring(4)); 


/// 
/// Delete a directory on the remote FTP server. 
/// 
/// 
public void rmdir(string dirName) 

if(!logined) 

login(); 

sendCommand("RMD "+dirName); 
if(retValue != 250) 

throw new IOException(reply.Substring(4)); 


/// 
/// Change the current working directory on the remote FTP server. 
/// 
/// 
public void chdir(string dirName) 

if(dirName.Equals(".")) 

return; 

if(!logined) 

login(); 

sendCommand("CWD "+dirName); 
if(retValue != 250) 

throw new IOException(reply.Substring(4)); 

this.remotePath = dirName; 
Console.WriteLine("Current directory is "+remotePath); 

/// 
/// Close the FTP connection. 
/// 
public void close() 

if( clientSocket != null ) 

sendCommand("QUIT"); 

cleanup(); 
Console.WriteLine("Closing..."); 

/// 
/// Set debug mode. 
/// 
/// 
public void setDebug(Boolean debug) 

this.debug = debug; 

private void readReply() 

mes = ""; 
reply = readLine(); 
retValue = Int32.Parse(reply.Substring(0,3)); 

private void cleanup() 

if(clientSocket!=null) 

clientSocket.Close(); 
clientSocket = null; 

logined = false; 

private string readLine() 

while(true) 

bytes = clientSocket.Receive(buffer, buffer.Length, 0); 
mes += ASCII.GetString(buffer, 0, bytes); 
if(bytes < buffer.Length) 

break; 


char[] seperator = {'/n'}; 
string[] mess = mes.Split(seperator); 
if(mes.Length > 2) 

mes = mess[mess.Length-2]; 

else 

mes = mess[0]; 

if(!mes.Substring(3,1).Equals(" ")) 

return readLine(); 

if(debug) 

for(int k=0;k < mess.Length-1;k++) 

Console.WriteLine(mess[k]); 


return mes; 

private void sendCommand(String command) 

Byte[] cmdBytes = 
Encoding.ASCII.GetBytes((command+"/r/n").ToCharArray()); 
clientSocket.Send(cmdBytes, cmdBytes.Length, 0); 
readReply(); 

private Socket createDataSocket() 

sendCommand("PASV"); 
if(retValue != 227) 

throw new IOException(reply.Substring(4)); 

int index1 = reply.IndexOf('('); 
int index2 = reply.IndexOf(')'); 
string ipData = 
reply.Substring(index1+1,index2-index1-1); 
int[] parts = new int[6]; 
int len = ipData.Length; 
int partCount = 0; 
string buf=""; 
for (int i = 0; i < len && partCount <= 6; i++) 

char ch = Char.Parse(ipData.Substring(i,1)); 
if (Char.IsDigit(ch)) 
buf+=ch; 
else if (ch != ',') 

throw new IOException("Malformed PASV reply: " + 
reply); 

if (ch == ',' || i+1 == len) 

try 

parts[partCount++] = Int32.Parse(buf); 
buf=""; 

catch (Exception) 

throw new IOException("Malformed PASV reply: " + 
reply); 



string ipAddress = parts[0] + "."+ parts[1]+ "." + 
parts[2] + "." + parts[3]; 
int port = (parts[4] << 8) + parts[5]; 
Socket s = new 
Socket(AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp); 
s.SetSocketOption (SocketOptionLevel.Socket, SocketOptionName.SendTimeout, 5000); 
IPEndPoint ep = new 
IPEndPoint(Dns.Resolve(ipAddress).AddressList[0], port); 
try 

s.Connect(ep); 

catch(Exception) 

    throw new IOException("Can't connect to remote server"); 

return s; 



發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
欧美日韩免费网站| 久久国产精品网站| 久久久久久高潮国产精品视| 亚洲第一免费播放区| 日本一欧美一欧美一亚洲视频| 久久久爽爽爽美女图片| 亚洲精品视频免费| 高清欧美电影在线| 久久手机免费视频| 国产性色av一区二区| 日韩视频亚洲视频| 国产精品午夜一区二区欲梦| 日韩在线播放av| xxxx欧美18另类的高清| 久久国产精品视频| 亚洲成色999久久网站| 久久精品在线视频| 亚洲日韩欧美视频一区| 韩国视频理论视频久久| 97在线视频国产| 日本一区二区三区在线播放| 日韩免费在线电影| 精品无码久久久久久国产| 亚洲欧美综合区自拍另类| 国产精品综合久久久| 91香蕉嫩草影院入口| 欧美午夜无遮挡| 亚洲美女在线观看| 色中色综合影院手机版在线观看| 久久久久久欧美| 国产91精品黑色丝袜高跟鞋| 海角国产乱辈乱精品视频| 日韩中文字幕在线观看| 日韩欧美国产成人| 国产成人在线视频| 欧美午夜美女看片| 午夜精品久久久久久久男人的天堂| 夜夜嗨av一区二区三区免费区| 精品欧美一区二区三区| 成人免费午夜电影| 亚洲第一天堂av| 欧美巨乳美女视频| 日本中文字幕成人| 国产精品久在线观看| 国产精品日韩专区| 高清欧美电影在线| 国产精品视频永久免费播放| 日韩欧美中文字幕在线播放| 中文字幕在线看视频国产欧美在线看完整| 欧美激情一区二区三区在线视频观看| 欧美精品成人91久久久久久久| 国产成人精品日本亚洲| 日韩一级黄色av| 日韩精品久久久久久久玫瑰园| 91免费精品国偷自产在线| 精品久久久久久中文字幕| 久久人体大胆视频| y97精品国产97久久久久久| 川上优av一区二区线观看| 一区二区欧美久久| 欧美成人国产va精品日本一级| 欧美精品成人91久久久久久久| 国产精品狠色婷| 日韩美女视频在线观看| 亚洲最新在线视频| 国产成人精品一区| 国产成人久久久| 欧美猛男性生活免费| 大桥未久av一区二区三区| 亚洲高清一区二| 亚洲精品视频网上网址在线观看| 亚洲男人av电影| 亚洲国产欧美一区二区三区久久| 欧美黄色免费网站| 日韩成人在线观看| 欧美日韩综合视频网址| 亚洲天堂男人天堂女人天堂| 色综合伊人色综合网站| 欧美性受xxx| 欧美中文在线字幕| 欧美激情二区三区| 久久精品视频99| 亚洲色图第一页| 国产精品观看在线亚洲人成网| 国产视频亚洲视频| 日韩在线播放视频| 精品久久久久久久久久ntr影视| 亚洲成人精品在线| 亚洲天堂男人天堂女人天堂| 欧美裸身视频免费观看| 欧美最猛黑人xxxx黑人猛叫黄| 日韩有码在线电影| www.亚洲男人天堂| 欧美日韩在线观看视频小说| 九九久久精品一区| 国产午夜精品全部视频播放| 欧美一级淫片播放口| 97精品在线视频| 久久69精品久久久久久国产越南| 欧美人与性动交a欧美精品| 亚洲欧洲日本专区| 日韩久久免费电影| 日韩三级成人av网| 91网站免费看| 亚洲国产另类 国产精品国产免费| 77777少妇光屁股久久一区| 欧美日韩人人澡狠狠躁视频| 日韩中文字幕在线视频播放| 国产一区二区三区三区在线观看| 欧美日韩国产精品一区二区三区四区| 最近中文字幕mv在线一区二区三区四区| 久热精品在线视频| 欧美电影免费播放| 国产精品一区二区电影| 亚洲成人国产精品| x99av成人免费| 久久夜色撩人精品| 亚洲一区制服诱惑| 日韩美女激情视频| 日韩免费av一区二区| 国精产品一区一区三区有限在线| 九九热精品视频| 欧美午夜激情视频| 亚洲综合在线小说| 亚洲一区二区三区毛片| 国产精品va在线播放| 亚洲欧美日韩一区二区三区在线| 精品福利樱桃av导航| www.久久久久久.com| 亚洲精品第一国产综合精品| 日韩美女在线看| 久久久久久成人| 91情侣偷在线精品国产| 91情侣偷在线精品国产| 成人av在线天堂| 97在线视频国产| 国产丝袜一区视频在线观看| 日韩精品中文字幕有码专区| 日韩欧美精品中文字幕| 久久久久久综合网天天| 91精品视频观看| 日本中文字幕成人| 日韩在线观看免费全| 国产大片精品免费永久看nba| 亚洲黄色有码视频| 久热精品视频在线| 亚洲春色另类小说| 国产日韩欧美黄色| 久热精品视频在线观看| 91成人精品网站| 成人黄色大片在线免费观看| 亚洲精品色婷婷福利天堂| 岛国精品视频在线播放| 国内精品久久久久久久| 国产精品久久久久久久天堂| 亚洲www视频| 秋霞成人午夜鲁丝一区二区三区| 欧美亚洲另类视频| 欧美激情xxxx性bbbb| 日韩网站在线观看| 国产精品影院在线观看| 日韩精品中文字幕在线播放| 亚洲精品国产精品国自产在线| 国产精品久久久久久久一区探花|