473,657 Members | 2,479 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

FTP

How do you put/get a file via ftp from a C# Windows App?
I can't seem to find any classes that can do this.

Tahnk You,
Nov 15 '05 #1
2 9124
I'm sorry Jon. I don't see an attachment. Could you send
it again.

Thank You,
-----Original Message-----
FTP is not implemented in the .NET framework.

See attachment.

HTH,
Jon Davis
"Tony" <tr****@cosmi.c om> wrote in message
news:05******* *************** ******@phx.gbl. ..
How do you put/get a file via ftp from a C# Windows App?
I can't seem to find any classes that can do this.

Tahnk You,


Nov 15 '05 #2

"Tony" <tr****@cosmi.c om> wrote in message
news:04******** *************** *****@phx.gbl.. .
I'm sorry Jon. I don't see an attachment. Could you send
it again.

Thank You,


see below

--------------------------------------------------------------

using System;
using System.Net;
using System.IO;
using System.Text;
using System.Net.Sock ets;
using System.Diagnost ics;
using System.Runtime. Remoting;
using System.Runtime. Remoting.Messag ing;

/*
* FTP Client library in C#
* Author: Jaimon Mathew
* mailto:ja****** ****@rediffmail .com
* http://www.csharphelp.com/archives/archive9.html
*
* Adapted for use by Dan Glass 07/03/03
*
* Modified / adapted again by Jon Davis 08/15/2003
* added DirExists(), GetCurrentDir()
*
*/
namespace
Accentra.Applic ations.PowerBlo g.BlogObjects.P ublishing.Conne ctionClients
{

public class FtpClient
{

public class FtpException : Exception
{
public FtpException(st ring message) : base(message) {
_resultcode = -1;
}
public FtpException(st ring message, int resultCode) : base(message) {
_resultcode = resultCode;
}
public FtpException(st ring message, Exception innerException) :
base(message,in nerException) {
_resultcode = -1;
}
public FtpException(st ring message, int resultCode, Exception
innerException) : base(message,in nerException) {
_resultcode = resultCode;
}

private int _resultcode;
public int ResultCode {
get {
return _resultcode;
}
}
}

private static int BUFFER_SIZE = 512;
private static Encoding ASCII = Encoding.ASCII;

private bool verboseDebuggin g = false;

// defaults
private string server = "localhost" ;
private string remotePath = ".";
private string username = "anonymous" ;
private string password = "an*******@anon ymous.net";
private string message = null;
private string result = null;

private int port = 21;
private int bytes = 0;
private int resultCode = 0;

private bool loggedin = false;
private bool binMode = false;

private Byte[] buffer = new Byte[BUFFER_SIZE];
private Socket clientSocket = null;

private int timeoutSeconds = 10;

/// <summary>
/// Default contructor
/// </summary>
public FtpClient()
{
}
/// <summary>
///
/// </summary>
/// <param name="server"></param>
/// <param name="username" ></param>
/// <param name="password" ></param>
public FtpClient(strin g server, string username, string password)
{
this.server = server;
this.username = username;
this.password = password;
}
/// <summary>
///
/// </summary>
/// <param name="server"></param>
/// <param name="username" ></param>
/// <param name="password" ></param>
/// <param name="timeoutSe conds"></param>
/// <param name="port"></param>
public FtpClient(strin g server, string username, string password, int
timeoutSeconds, int port)
{
this.server = server;
this.username = username;
this.password = password;
this.timeoutSec onds = timeoutSeconds;
this.port = port;
}

/// <summary>
/// Display all communications to the debug log
/// </summary>
public bool VerboseDebuggin g
{
get
{
return this.verboseDeb ugging;
}
set
{
this.verboseDeb ugging = value;
}
}
/// <summary>
/// Remote server port. Typically TCP 21
/// </summary>
public int Port
{
get
{
return this.port;
}
set
{
this.port = value;
}
}
/// <summary>
/// Timeout waiting for a response from server, in seconds.
/// </summary>
public int Timeout
{
get
{
return this.timeoutSec onds;
}
set
{
this.timeoutSec onds = value;
}
}
/// <summary>
/// Gets and Sets the name of the FTP server.
/// </summary>
/// <returns></returns>
public string Server
{
get
{
return this.server;
}
set
{
this.server = value;
}
}
/// <summary>
/// Gets and Sets the port number.
/// </summary>
/// <returns></returns>
public int RemotePort
{
get
{
return this.port;
}
set
{
this.port = value;
}
}
/// <summary>
/// GetS and Sets the remote directory.
/// </summary>
public string RemotePath
{
get
{
return this.remotePath ;
}
set
{
this.remotePath = value;
}

}
/// <summary>
/// Gets and Sets the username.
/// </summary>
public string Username
{
get
{
return this.username;
}
set
{
this.username = value;
}
}
/// <summary>
/// Gets and Set the password.
/// </summary>
public string Password
{
get
{
return this.password;
}
set
{
this.password = value;
}
}

/// <summary>
/// If the value of mode is true, set binary mode for downloads, else,
Ascii mode.
/// </summary>
public bool BinaryMode
{
get
{
return this.binMode;
}
set
{
if ( this.binMode == value ) return;

if ( value )
sendCommand("TY PE I");

else
sendCommand("TY PE A");

if ( this.resultCode != 200 ) throw new
FtpException(re sult.Substring( 4), this.resultCode );
}
}
/// <summary>
/// Login to the Remote server.
/// </summary>
public void Login()
{
if ( this.loggedin ) this.Close();

Debug.WriteLine ("Opening connection to " + this.server, "FtpClient" );

IPAddress addr = null;
IPEndPoint ep = null;

try
{
this.clientSock et = new Socket( AddressFamily.I nterNetwork,
SocketType.Stre am, ProtocolType.Tc p );
addr = Dns.Resolve(thi s.server).Addre ssList[0];
ep = new IPEndPoint( addr, this.port );
this.clientSock et.Connect(ep);
}
catch(Exception ex)
{
// doubtfull
if ( this.clientSock et != null && this.clientSock et.Connected )
this.clientSock et.Close();

throw new FtpException("C ouldn't connect to remote server",ex);
}

this.readRespon se();

if(this.resultC ode != 220)
{
this.Close();
throw new FtpException(th is.result.Subst ring(4), this.resultCode );
}

this.sendComman d( "USER " + username );

if( !(this.resultCo de == 331 || this.resultCode == 230) )
{
this.cleanup();
throw new FtpException(th is.result.Subst ring(4), this.resultCode );
}

if( this.resultCode != 230 )
{
this.sendComman d( "PASS " + password );

if( !(this.resultCo de == 230 || this.resultCode == 202) )
{
this.cleanup();
throw new FtpException(th is.result.Subst ring(4), this.resultCode );
}
}

this.loggedin = true;

Debug.WriteLine ( "Connected to " + this.server, "FtpClient" );

this.ChangeDir( this.RemotePath );
}

/// <summary>
/// Close the FTP connection.
/// </summary>
public void Close()
{
Debug.WriteLine ("Closing connection to " + this.server, "FtpClient" );

if( this.clientSock et != null )
{
this.sendComman d("QUIT");
}

this.cleanup();
}

/// <summary>
/// Return a string array containing the remote directory's file list.
/// </summary>
/// <returns></returns>
public string[] GetFileList()
{
return this.GetFileLis t("*.*");
}

/// <summary>
/// Return a string array containing the remote directory's file list.
/// </summary>
/// <param name="mask"></param>
/// <returns></returns>
public string[] GetFileList(str ing mask)
{
if ( !this.loggedin ) this.Login();

Socket cSocket = createDataSocke t();

this.sendComman d("NLST " + mask);

if(!(this.resul tCode == 150 || this.resultCode == 125)) throw new
FtpException(th is.result.Subst ring(4), this.resultCode );

this.message = "";

DateTime timeout = DateTime.Now.Ad dSeconds(this.t imeoutSeconds);

while( timeout > DateTime.Now )
{
int bytes = cSocket.Receive (buffer, buffer.Length, 0);
this.message += ASCII.GetString (buffer, 0, bytes);

if ( bytes < this.buffer.Len gth ) break;
}

string[] msg = this.message.Re place("\r",""). Split('\n');

cSocket.Close() ;

if ( this.message.In dexOf( "No such file or directory" ) != -1 )
msg = new string[]{};

this.readRespon se();

if ( this.resultCode != 226 )
msg = new string[]{};
// throw new FtpException(re sult.Substring( 4));

return msg;
}

/// <summary>
/// Return the size of a file.
/// </summary>
/// <param name="fileName" ></param>
/// <returns></returns>
public long GetFileSize(str ing fileName)
{
if ( !this.loggedin ) this.Login();

this.sendComman d("SIZE " + fileName);
long size=0;

if ( this.resultCode == 213 )
size = long.Parse(this .result.Substri ng(4));

else
throw new FtpException(th is.result.Subst ring(4), this.resultCode );

return size;
}
/// <summary>
/// Download a file to the Assembly's local directory,
/// keeping the same file name.
/// </summary>
/// <param name="remFileNa me"></param>
public void Download(string remFileName)
{
this.Download(r emFileName,"",f alse);
}

/// <summary>
/// Download a remote file to the Assembly's local directory,
/// keeping the same file name, and set the resume flag.
/// </summary>
/// <param name="remFileNa me"></param>
/// <param name="resume"></param>
public void Download(string remFileName,Boo lean resume)
{
this.Download(r emFileName,"",r esume);
}

/// <summary>
/// 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.
/// </summary>
/// <param name="remFileNa me"></param>
/// <param name="locFileNa me"></param>
public void Download(string remFileName,str ing locFileName)
{
this.Download(r emFileName,locF ileName,false);
}

/// <summary>
/// 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.
/// </summary>
/// <param name="remFileNa me"></param>
/// <param name="locFileNa me"></param>
/// <param name="resume"></param>
public void Download(string remFileName,str ing locFileName,Boo lean resume)
{
if ( !this.loggedin ) this.Login();

this.BinaryMode = true;

Debug.WriteLine ("Downloadin g file " + remFileName + " from " + server +
"/" + RemotePath, "FtpClient" );

if (locFileName.Eq uals(""))
{
locFileName = remFileName;
}

FileStream output = null;

if ( !File.Exists(lo cFileName) )
output = File.Create(loc FileName);

else
output = new FileStream(locF ileName,FileMod e.Open);

Socket cSocket = createDataSocke t();

long offset = 0;

if ( resume )
{
offset = output.Length;

if ( offset > 0 )
{
this.sendComman d( "REST " + offset );
if ( this.resultCode != 350 )
{
//Server dosnt support resuming
offset = 0;
Debug.WriteLine ("Resuming not supported:" + result.Substrin g(4),
"FtpClient" );
}
else
{
Debug.WriteLine ("Resuming at offset " + offset, "FtpClient" );
output.Seek( offset, SeekOrigin.Begi n );
}
}
}

this.sendComman d("RETR " + remFileName);

if ( this.resultCode != 150 && this.resultCode != 125 )
{
throw new FtpException(th is.result.Subst ring(4), this.resultCode );
}

DateTime timeout = DateTime.Now.Ad dSeconds(this.t imeoutSeconds);

while ( timeout > DateTime.Now )
{
this.bytes = cSocket.Receive (buffer, buffer.Length, 0);
output.Write(th is.buffer,0,thi s.bytes);

if ( this.bytes <= 0)
{
break;
}
}

output.Close();

if ( cSocket.Connect ed ) cSocket.Close() ;

this.readRespon se();

if( this.resultCode != 226 && this.resultCode != 250 )
throw new FtpException(th is.result.Subst ring(4), this.resultCode );
}
/// <summary>
/// Upload a file.
/// </summary>
/// <param name="fileName" ></param>
public void Upload(string fileName)
{
this.Upload(fil eName, MiscUtil.GetFil eName(fileName) , false);
}

public void Upload(string fileName, string destName) {
this.Upload(fil eName, destName, false);
}

/// <summary>
/// Upload a file and set the resume flag.
/// </summary>
/// <param name="fileName" ></param>
/// <param name="resume"></param>
public void Upload(string fileName, bool resume) {
this.Upload(fil eName, MiscUtil.GetFil eName(fileName) , resume);
}

/// <summary>
/// Upload a file and set the resume flag.
/// </summary>
/// <param name="fileName" ></param>
/// <param name="resume"></param>
public void Upload(string fileName, string destName, bool resume)
{
if ( !this.loggedin ) this.Login();

Socket cSocket = null ;
long offset = 0;

if ( resume )
{
try
{
this.BinaryMode = true;

offset = GetFileSize( Path.GetFileNam e(fileName) );
}
catch(Exception )
{
// file not exist
offset = 0;
}
}

// open stream to read file
FileStream input = new FileStream(file Name,FileMode.O pen);

if ( resume && input.Length < offset )
{
// different file size
Debug.WriteLine ("Overwritin g " + fileName, "FtpClient" );
offset = 0;
}
else if ( resume && input.Length == offset )
{
// file done
input.Close();
Debug.WriteLine ("Skipping completed " + fileName + " - turn resume off
to not detect.", "FtpClient" );
return;
}

// dont create untill we know that we need it
cSocket = this.createData Socket();

if ( offset > 0 )
{
this.sendComman d( "REST " + offset );
if ( this.resultCode != 350 )
{
Debug.WriteLine ("Resuming not supported", "FtpClient" );
offset = 0;
}
}

this.sendComman d( "STOR " + destName);

if ( this.resultCode != 125 && this.resultCode != 150 ) throw new
FtpException(re sult.Substring( 4), this.resultCode );

if ( offset != 0 )
{
Debug.WriteLine ("Resuming at offset " + offset, "FtpClient" );

input.Seek(offs et,SeekOrigin.B egin);
}

Debug.WriteLine ( "Uploading file " + fileName + " to " + RemotePath,
"FtpClient" );

while ((bytes = input.Read(buff er,0,buffer.Len gth)) > 0)
{
cSocket.Send(bu ffer, bytes, 0);
}

input.Close();

if (cSocket.Connec ted)
{
cSocket.Close() ;
}

this.readRespon se();

if( this.resultCode != 226 && this.resultCode != 250 ) throw new
FtpException(th is.result.Subst ring(4), this.resultCode );
}

/// <summary>
/// Upload a directory and its file contents
/// </summary>
/// <param name="path"></param>
/// <param name="recurse"> Whether to recurse sub directories</param>
public void UploadDirectory (string path, bool recurse)
{
this.UploadDire ctory(path,recu rse,"*.*");
}

/// <summary>
/// Upload a directory and its file contents
/// </summary>
/// <param name="path"></param>
/// <param name="recurse"> Whether to recurse sub directories</param>
/// <param name="mask">Onl y upload files of the given mask - everything is
'*.*'</param>
public void UploadDirectory (string path, bool recurse, string mask)
{
string[] dirs = path.Replace("/",@"\").Split(' \\');
string rootDir = dirs[ dirs.Length - 1 ];

// make the root dir if it doed not exist
if ( this.GetFileLis t(rootDir).Leng th < 1 ) this.MakeDir(ro otDir);

this.ChangeDir( rootDir);

foreach ( string file in Directory.GetFi les(path,mask) )
{
this.Upload(fil e,true);
}
if ( recurse )
{
foreach ( string directory in Directory.GetDi rectories(path) )
{
this.UploadDire ctory(directory ,recurse,mask);
}
}

this.ChangeDir( "..");
}

/// <summary>
/// Delete a file from the remote FTP server.
/// </summary>
/// <param name="fileName" ></param>
public void DeleteFile(stri ng fileName)
{
if ( !this.loggedin ) this.Login();

this.sendComman d( "DELE " + fileName );

if ( this.resultCode != 250 ) throw new
FtpException(th is.result.Subst ring(4), this.resultCode );

Debug.WriteLine ( "Deleted file " + fileName, "FtpClient" );
}

/// <summary>
/// Rename a file on the remote FTP server.
/// </summary>
/// <param name="oldFileNa me"></param>
/// <param name="newFileNa me"></param>
/// <param name="overwrite ">setting to false will throw exception if it
exists</param>
public void RenameFile(stri ng oldFileName,str ing newFileName, bool
overwrite)
{
if ( !this.loggedin ) this.Login();

this.sendComman d( "RNFR " + oldFileName );

if ( this.resultCode != 350 ) throw new
FtpException(th is.result.Subst ring(4), this.resultCode );

if ( !overwrite && this.GetFileLis t(newFileName). Length > 0 ) throw new
FtpException("F ile already exists");

this.sendComman d( "RNTO " + newFileName );

if ( this.resultCode != 250 ) throw new
FtpException(th is.result.Subst ring(4), this.resultCode );

Debug.WriteLine ( "Renamed file " + oldFileName + " to " + newFileName,
"FtpClient" );
}

/// <summary>
/// Create a directory on the remote FTP server.
/// </summary>
/// <param name="dirName"> </param>
public void MakeDir(string dirName)
{
if ( !this.loggedin ) this.Login();

this.sendComman d( "MKD " + dirName );

if ( this.resultCode != 250 && this.resultCode != 257 ) throw new
FtpException(th is.result.Subst ring(4), this.resultCode );

Debug.WriteLine ( "Created directory " + dirName, "FtpClient" );
}

/// <summary>
/// Delete a directory on the remote FTP server.
/// </summary>
/// <param name="dirName"> </param>
public void RemoveDir(strin g dirName)
{
if ( !this.loggedin ) this.Login();

this.sendComman d( "RMD " + dirName );

if ( this.resultCode != 250 ) throw new
FtpException(th is.result.Subst ring(4), this.resultCode );

Debug.WriteLine ( "Removed directory " + dirName, "FtpClient" );
}

/// <summary>
/// Change the current working directory on the remote FTP server.
/// </summary>
/// <param name="dirName"> </param>
public void ChangeDir(strin g dirName)
{
if( dirName == null || dirName.Equals( ".") || dirName.Length == 0 )
{
return;
}

if ( !this.loggedin ) this.Login();

this.sendComman d( "CWD " + dirName );

if ( this.resultCode != 250 ) throw new FtpException(re sult.Substring( 4),
this.resultCode );

this.sendComman d( "PWD" );

if ( this.resultCode != 257 ) throw new FtpException(re sult.Substring( 4),
this.resultCode );

// gonna have to do better than this....
this.RemotePath = this.message.Sp lit('"')[1];

Debug.WriteLine ( "Current directory is " + this.RemotePath ,
"FtpClient" );
}

/// <summary>
/// Tests to see if a specified directory exists on the remote FTP server.
/// </summary>
/// <param name="dirName"> </param>
/// <returns></returns>
public bool DirExists(strin g dirName) {
string pwd = this.GetCurrent Dir();
if (pwd == dirName) return true;
bool exists;
try {
this.ChangeDir( dirName);
exists = true;
this.ChangeDir( pwd);
} catch (FtpException ex) {
if (ex.ResultCode == 550) {
exists = false;
} else throw ex;
}
return exists;
}

public string GetCurrentDir() {
if ( !this.loggedin ) this.Login();

this.sendComman d( "PWD" );

if ( this.resultCode != 257 ) throw new FtpException(re sult.Substring( 4),
this.resultCode );

string ret = result.Substrin g(4);
if (ret.IndexOf("\ "") > -1 &&
ret.LastIndexOf ("\"", ret.IndexOf("\" ") + 1) > -1) {
ret = ret.Substring(r et.IndexOf("\"" ) + 1,
ret.IndexOf("\" ", ret.IndexOf("\" ") + 1) - ret.IndexOf("\" ") - 1);
} else if (ret.ToLower(). IndexOf(" is current directory") > -1) {
ret = ret.Substring(0 , ret.ToLower().I ndexOf(" is current
directory")).Tr im();
}

return ret;
}

/// <summary>
///
/// </summary>
private void readResponse()
{
this.message = "";
this.result = this.readLine() ;

if ( this.result.Len gth > 3 ) {
this.resultCode = int.Parse( this.result.Sub string(0,3) );
if (this.result.Su bstring(this.re sult.Length - 1) == "\r") {
this.result = this.result.Sub string(0, this.result.Len gth - 1);
}
} else
this.result = null;
}

/// <summary>
///
/// </summary>
/// <returns></returns>
private string readLine()
{
while(true)
{
this.bytes = clientSocket.Re ceive( this.buffer, this.buffer.Len gth, 0 );
this.message += ASCII.GetString ( this.buffer, 0, this.bytes );

if ( this.bytes < this.buffer.Len gth )
{
break;
}
}

string[] msg = this.message.Sp lit('\n');

if ( this.message.Le ngth > 2 )
this.message = msg[ msg.Length - 2 ];

else
this.message = msg[0];
if ( this.message.Le ngth > 4 && !this.message.S ubstring(3,1).E quals("
") ) return this.readLine() ;

if ( this.verboseDeb ugging )
{
for(int i = 0; i < msg.Length - 1; i++)
{
Debug.Write( msg[i], "FtpClient" );
}
}

return message;
}

/// <summary>
///
/// </summary>
/// <param name="command"> </param>
private void sendCommand(Str ing command)
{
if ( this.verboseDeb ugging ) Debug.WriteLine (command,"FtpCl ient");

Byte[] cmdBytes = Encoding.ASCII. GetBytes( ( command +
"\r\n" ).ToCharArray() );
clientSocket.Se nd( cmdBytes, cmdBytes.Length , 0);
this.readRespon se();
}

/// <summary>
/// when doing data transfers, we need to open another socket for it.
/// </summary>
/// <returns>Connec ted socket</returns>
private Socket createDataSocke t()
{
this.sendComman d("PASV");

if ( this.resultCode != 227 ) throw new
FtpException(th is.result.Subst ring(4), this.resultCode );

int index1 = this.result.Ind exOf('(');
int index2 = this.result.Ind exOf(')');

string ipData = this.result.Sub string(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.Substrin g(i,1) );

if ( char.IsDigit(ch ) )
buf+=ch;

else if (ch != ',')
throw new FtpException("M alformed PASV result: " + result);

if ( ch == ',' || i+1 == len )
{
try
{
parts[partCount++] = int.Parse(buf);
buf = "";
}
catch (Exception ex)
{
throw new FtpException("M alformed PASV result (not supported?): " +
this.result, ex);
}
}
}

string ipAddress = parts[0] + "."+ parts[1]+ "." + parts[2] + "." +
parts[3];

int port = (parts[4] << 8) + parts[5];

Socket socket = null;
IPEndPoint ep = null;

try
{
socket = new
Socket(AddressF amily.InterNetw ork,SocketType. Stream,Protocol Type.Tcp);
ep = new IPEndPoint(Dns. Resolve(ipAddre ss).AddressList[0], port);
socket.Connect( ep);
}
catch(Exception ex)
{
// doubtfull....
if ( socket != null && socket.Connecte d ) socket.Close();

throw new FtpException("C an't connect to remote server", ex);
}

return socket;
}

/// <summary>
/// Always release those sockets.
/// </summary>
private void cleanup()
{
if ( this.clientSock et!=null )
{
this.clientSock et.Close();
this.clientSock et = null;
}
this.loggedin = false;
}

/// <summary>
/// Destuctor
/// </summary>
~FtpClient()
{
this.cleanup();
}

/*************** *************** *************** *************** ***************
*************** *************** *****/
#region Async methods (auto generated)

/*
WinInetApi.FtpC lient ftp = new WinInetApi.FtpC lient();

MethodInfo[] methods =
ftp.GetType().G etMethods(Bindi ngFlags.Declare dOnly|BindingFl ags.Instance|Bi n
dingFlags.Publi c);

foreach ( MethodInfo method in methods )
{
string param = "";
string values = "";
foreach ( ParameterInfo i in method.GetParam eters() )
{
param += i.ParameterType .Name + " " + i.Name + ",";
values += i.Name + ",";
}
Debug.WriteLine ("private delegate " + method.ReturnTy pe.Name + " " +
method.Name + "Callback(" + param.TrimEnd(' ,') + ");");

Debug.WriteLine ("public System.IAsyncRe sult Begin" + method.Name + "( "
+ param + " System.AsyncCal lback callback )");
Debug.WriteLine ("{");
Debug.WriteLine ("" + method.Name + "Callback ftpCallback = new " +
method.Name + "Callback(" + values + " this." + method.Name + ");");
Debug.WriteLine ("return ftpCallback.Beg inInvoke(callba ck, null);");
Debug.WriteLine ("}");
Debug.WriteLine ("public void End" + method.Name + "(System.IAsync Result
asyncResult)");
Debug.WriteLine ("{");
Debug.WriteLine (method.Name + "Callback fc = (" + method.Name +
"Callback) ((AsyncResult)a syncResult).Asy ncDelegate;");
Debug.WriteLine ("fc.EndInvoke( asyncResult);") ;
Debug.WriteLine ("}");
//Debug.WriteLine (method);
}
*/
private delegate void LoginCallback() ;
public System.IAsyncRe sult BeginLogin( System.AsyncCal lback callback )
{
LoginCallback ftpCallback = new LoginCallback( this.Login);
return ftpCallback.Beg inInvoke(callba ck, null);
}
private delegate void CloseCallback() ;
public System.IAsyncRe sult BeginClose( System.AsyncCal lback callback )
{
CloseCallback ftpCallback = new CloseCallback( this.Close);
return ftpCallback.Beg inInvoke(callba ck, null);
}
private delegate String[] GetFileListCall back();
public System.IAsyncRe sult BeginGetFileLis t( System.AsyncCal lback
callback )
{
GetFileListCall back ftpCallback = new GetFileListCall back(
this.GetFileLis t);
return ftpCallback.Beg inInvoke(callba ck, null);
}
private delegate String[] GetFileListMask Callback(String mask);
public System.IAsyncRe sult BeginGetFileLis t( String mask,
System.AsyncCal lback callback )
{
GetFileListMask Callback ftpCallback = new
GetFileListMask Callback(this.G etFileList);
return ftpCallback.Beg inInvoke(mask, callback, null);
}
private delegate Int64 GetFileSizeCall back(String fileName);
public System.IAsyncRe sult BeginGetFileSiz e( String fileName,
System.AsyncCal lback callback )
{
GetFileSizeCall back ftpCallback = new
GetFileSizeCall back(this.GetFi leSize);
return ftpCallback.Beg inInvoke(fileNa me, callback, null);
}
private delegate void DownloadCallbac k(String remFileName);
public System.IAsyncRe sult BeginDownload( String remFileName,
System.AsyncCal lback callback )
{
DownloadCallbac k ftpCallback = new DownloadCallbac k(this.Download );
return ftpCallback.Beg inInvoke(remFil eName, callback, null);
}
private delegate void DownloadFileNam eResumeCallback (String
remFileName,Boo lean resume);
public System.IAsyncRe sult BeginDownload( String remFileName,Boo lean
resume, System.AsyncCal lback callback )
{
DownloadFileNam eResumeCallback ftpCallback = new
DownloadFileNam eResumeCallback (this.Download) ;
return ftpCallback.Beg inInvoke(remFil eName, resume, callback, null);
}
private delegate void DownloadFileNam eFileNameCallba ck(String
remFileName,Str ing locFileName);
public System.IAsyncRe sult BeginDownload( String remFileName,Str ing
locFileName, System.AsyncCal lback callback )
{
DownloadFileNam eFileNameCallba ck ftpCallback = new
DownloadFileNam eFileNameCallba ck(this.Downloa d);
return ftpCallback.Beg inInvoke(remFil eName, locFileName, callback, null);
}
private delegate void DownloadFileNam eFileNameResume Callback(String
remFileName,Str ing locFileName,Boo lean resume);
public System.IAsyncRe sult BeginDownload( String remFileName,Str ing
locFileName,Boo lean resume, System.AsyncCal lback callback )
{
DownloadFileNam eFileNameResume Callback ftpCallback = new
DownloadFileNam eFileNameResume Callback(this.D ownload);
return ftpCallback.Beg inInvoke(remFil eName, locFileName, resume,
callback, null);
}
private delegate void UploadCallback( String fileName);
public System.IAsyncRe sult BeginUpload( String fileName,
System.AsyncCal lback callback )
{
UploadCallback ftpCallback = new UploadCallback( this.Upload);
return ftpCallback.Beg inInvoke(fileNa me, callback, null);
}
private delegate void UploadFileNameR esumeCallback(S tring fileName,Boolea n
resume);
public System.IAsyncRe sult BeginUpload( String fileName,Boolea n resume,
System.AsyncCal lback callback )
{
UploadFileNameR esumeCallback ftpCallback = new
UploadFileNameR esumeCallback(t his.Upload);
return ftpCallback.Beg inInvoke(fileNa me, resume, callback, null);
}
private delegate void UploadDirectory Callback(String path,Boolean
recurse);
public System.IAsyncRe sult BeginUploadDire ctory( String path,Boolean
recurse, System.AsyncCal lback callback )
{
UploadDirectory Callback ftpCallback = new
UploadDirectory Callback(this.U ploadDirectory) ;
return ftpCallback.Beg inInvoke(path, recurse, callback, null);
}
private delegate void UploadDirectory PathRecurseMask Callback(String
path,Boolean recurse,String mask);
public System.IAsyncRe sult BeginUploadDire ctory( String path,Boolean
recurse,String mask, System.AsyncCal lback callback )
{
UploadDirectory PathRecurseMask Callback ftpCallback = new
UploadDirectory PathRecurseMask Callback(this.U ploadDirectory) ;
return ftpCallback.Beg inInvoke(path, recurse, mask, callback, null);
}
private delegate void DeleteFileCallb ack(String fileName);
public System.IAsyncRe sult BeginDeleteFile ( String fileName,
System.AsyncCal lback callback )
{
DeleteFileCallb ack ftpCallback = new DeleteFileCallb ack(this.Delete File);
return ftpCallback.Beg inInvoke(fileNa me, callback, null);
}
private delegate void RenameFileCallb ack(String oldFileName,Str ing
newFileName,Boo lean overwrite);
public System.IAsyncRe sult BeginRenameFile ( String oldFileName,Str ing
newFileName,Boo lean overwrite, System.AsyncCal lback callback )
{
RenameFileCallb ack ftpCallback = new RenameFileCallb ack(this.Rename File);
return ftpCallback.Beg inInvoke(oldFil eName, newFileName, overwrite,
callback, null);
}
private delegate void MakeDirCallback (String dirName);
public System.IAsyncRe sult BeginMakeDir( String dirName,
System.AsyncCal lback callback )
{
MakeDirCallback ftpCallback = new MakeDirCallback (this.MakeDir);
return ftpCallback.Beg inInvoke(dirNam e, callback, null);
}
private delegate void RemoveDirCallba ck(String dirName);
public System.IAsyncRe sult BeginRemoveDir( String dirName,
System.AsyncCal lback callback )
{
RemoveDirCallba ck ftpCallback = new RemoveDirCallba ck(this.RemoveD ir);
return ftpCallback.Beg inInvoke(dirNam e, callback, null);
}
private delegate void ChangeDirCallba ck(String dirName);
public System.IAsyncRe sult BeginChangeDir( String dirName,
System.AsyncCal lback callback )
{
ChangeDirCallba ck ftpCallback = new ChangeDirCallba ck(this.ChangeD ir);
return ftpCallback.Beg inInvoke(dirNam e, callback, null);
}

#endregion
}
}
Nov 15 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
11206
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL) on the server because of that. Our site will have an SSL certificate next week, so I would like to use AIM instead of SIM, however, I don't know how to send data via POST over https and recieve data from the Authorize.net server over an https...
2
5802
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues to execute the code until the browser send his reply to the header instruction. So an exit(); after each redirection won't hurt at all
3
22994
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which field is completed.
0
8460
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. 354 roberto@ausone:Build/php-4.3.2> ldd /opt/php4/bin/php libsablot.so.0 => /usr/local/lib/libsablot.so.0 libstdc++.so.5 => /usr/local/lib/libstdc++.so.5 libm.so.1 => /usr/lib/libm.so.1
1
8564
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the column below. The viewer can select states from the drop down lists above the other two columns as well. If the viewer selects only one, only one column fills. If the viewer selects two states, two columns fill. Etc. I could, if appropriate, have...
4
18253
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the user comes back to a page where he had a submitted POST data the browser keeps telling that the data has expired and asks if repost. How to avoid that? I tried registering all POST and GET vars as SESSION vars but
1
6810
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url http://www.mis.gla.ac.uk/biquery/training/ but each of the courses held have maximum of 8 people that could be
2
31394
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value to :parameter I dont like the idea of making the SQL statement on the fly without binding parameters as I dont want a highly polluted SQL cache.
3
23564
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the results of the picture half the size. The PHP I have installed support 1.62 or higher. And all I would like to do is take and image and make it fit a 3x3. Any suggestions to where I should read or look would be appreciated.
0
8325
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8742
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8518
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7354
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6177
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5643
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2743
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1734
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.