NET FTP Library
UploadDirectoryAsync(String,String,Object) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > UploadDirectoryAsync Method : UploadDirectoryAsync(String,String,Object) Method
Local path to upload
FTP path to upload to.
Your custom object to be returned with Started, Progress, and Completed Events
Upload an entire directory, subdirectories, and files asynchronously using FTP.
Syntax
'Declaration
 
Public Overloads Sub UploadDirectoryAsync( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String, _
   ByVal customObject As System.Object _
) 
'Usage
 
Dim instance As FTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim customObject As System.Object
 
instance.UploadDirectoryAsync(localDirectory, ftpDirectory, customObject)
public void UploadDirectoryAsync( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.object customObject
)
public procedure UploadDirectoryAsync( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    customObject: System.TObject
); 
public function UploadDirectoryAsync( 
   localDirectory : System.String,
   ftpDirectory : System.String,
   customObject : System.Object
);
public: void UploadDirectoryAsync( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.Object* customObject
) 
public:
void UploadDirectoryAsync( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.Object^ customObject
) 

Parameters

localDirectory
Local path to upload
ftpDirectory
FTP path to upload to.
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
 
//Upload an entire directory, subdirectories, and files asynchronously 
System.Console.WriteLine("Transferring files from the Download folder to the TestDir FTP folder. This call is not blocking");
ftp.UploadDirectoryAsync("C:\\Download", "TestDir");
 
while (ftp.IsBusy == true)
{
    System.Threading.Thread.Sleep(100);
}
 
System.Console.WriteLine("TestDir has now {0} KB", ftp.GetDirectorySize("TestDir") / 1024);
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
 
'Upload an entire directory, subdirectories, and files asynchronously 
System.Console.WriteLine("Transferring files from the Download folder to the TestDir FTP folder. This call is not blocking")
ftp.UploadDirectoryAsync("C:\\Download", "TestDir")
 
Do While ftp.IsBusy = True
    System.Threading.Thread.Sleep(100)
Loop
 
System.Console.WriteLine("TestDir has now {0} KB", ftp.GetDirectorySize("TestDir") / 1024)
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