Put data onto the FTP server in the current directory.
Put data onto the FTP server in the current directory.
public virtual void Put(byte[],string);
Put data onto the FTP server in the current directory. Allows appending if current file exists.
public virtual void Put(byte[],string,bool);
Put a stream of data onto the FTP server in the current directory.
public virtual long Put(Stream,string);
Put a stream of data onto the FTP server in the current directory. Allows appending if current file exists
public virtual long Put(Stream,string,bool);
Put a local file onto the FTP server in the current directory.
public virtual void Put(string,string);
Put a local file onto the FTP server in the current directory. Allows appending if current file exists.
public virtual void Put(string,string,bool);