NET FTP Library
UploadFileAsync(String,String,Int64,Object) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > UploadFileAsync Method : UploadFileAsync(String,String,Int64,Object) Method
The full path of the file, including the file name
The full path of the FTP file, including the ftp directory and file name
The byte offset to begin uploading
Your custom object to be returned with Started, Progress, and Completed Events
Upload a file asynchronously using FTP
Syntax
'Declaration
 
Public Overloads Sub UploadFileAsync( _
   ByVal localFilePath As System.String, _
   ByVal ftpFileName As System.String, _
   ByVal restart As System.Long, _
   ByVal customObject As System.Object _
) 
'Usage
 
Dim instance As FTP
Dim localFilePath As System.String
Dim ftpFileName As System.String
Dim restart As System.Long
Dim customObject As System.Object
 
instance.UploadFileAsync(localFilePath, ftpFileName, restart, customObject)
public void UploadFileAsync( 
   System.string localFilePath,
   System.string ftpFileName,
   System.long restart,
   System.object customObject
)
public procedure UploadFileAsync( 
    localFilePath: System.String;
    ftpFileName: System.String;
    restart: System.Int64;
    customObject: System.TObject
); 
public function UploadFileAsync( 
   localFilePath : System.String,
   ftpFileName : System.String,
   restart : System.long,
   customObject : System.Object
);
public: void UploadFileAsync( 
   System.string* localFilePath,
   System.string* ftpFileName,
   System.long restart,
   System.Object* customObject
) 
public:
void UploadFileAsync( 
   System.String^ localFilePath,
   System.String^ ftpFileName,
   System.int64 restart,
   System.Object^ customObject
) 

Parameters

localFilePath
The full path of the file, including the file name
ftpFileName
The full path of the FTP file, including the ftp directory and file name
restart
The byte offset to begin uploading
customObject
Your custom object to be returned with Started, Progress, and Completed Events
Example
FTP ftp = new FTP(); //Trial Mode            
//FTP ftp = new FTP("place user name here", "place license key here");
 
// set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu"; // a hungarian university. change this to your ftp server
ftp.UserName = "anonymous"; // replace with your user name
ftp.Password = "user@mail.com"; // replace with your password
 
System.Console.WriteLine("We are uploading the a.txt file the Current FTP folder .This is a non-blocking call");
 
ftp.UploadFileAsync("C://Download/a.txt", "a.txt");
 
// we wait while this operation takes place
while (ftp.IsBusy == true)
{
    System.Threading.Thread.Sleep(100);
}
 
System.Console.WriteLine("a.txt {0}", ftp.FileExists("a.txt") == true ? "is on the ftp server" : "does not exist on the ftp server");
Dim ftp As FTP = New FTP() 'Trial Mode
'FTP ftp = new FTP("place user name here", "place license key here");
 
' set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu" ' a hungarian university. change this to your ftp server
ftp.UserName = "anonymous" ' replace with your user name
ftp.Password = "user@mail.com" ' replace with your password
 
System.Console.WriteLine("We are uploading the a.txt file the Current FTP folder .This is a non-blocking call")
 
ftp.UploadFileAsync("C://Download/a.txt", "a.txt")
 
' we wait while this operation takes place
Do While ftp.IsBusy = True
    System.Threading.Thread.Sleep(100)
Loop
 
If ftp.FileExists("a.txt") = True Then
    System.Console.WriteLine("a.txt {0}","is on the ftp server")
Else
    System.Console.WriteLine("a.txt {0}","does not exist on the ftp server")
End If
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FTP Class
FTP Members
Overload List