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






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > UploadDirectoryAsync Method : UploadDirectoryAsync(String,String,Boolean,String) Method
The local directory to upload
The FTP directory to upload to
If true, upload sub directories
The file pattern
Upload files matching the wildcard pattern using FTP Uses standard wild card pattern such as *.xls
Syntax
'Declaration
 
Public Overloads Sub UploadDirectoryAsync( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String, _
   ByVal subDirectories As System.Boolean, _
   ByVal wildCardPattern As System.String _
) 
'Usage
 
Dim instance As FTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim subDirectories As System.Boolean
Dim wildCardPattern As System.String
 
instance.UploadDirectoryAsync(localDirectory, ftpDirectory, subDirectories, wildCardPattern)
public void UploadDirectoryAsync( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.bool subDirectories,
   System.string wildCardPattern
)
public procedure UploadDirectoryAsync( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    subDirectories: System.Boolean;
    wildCardPattern: System.String
); 
public function UploadDirectoryAsync( 
   localDirectory : System.String,
   ftpDirectory : System.String,
   subDirectories : System.boolean,
   wildCardPattern : System.String
);
public: void UploadDirectoryAsync( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.bool subDirectories,
   System.string* wildCardPattern
) 
public:
void UploadDirectoryAsync( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.bool subDirectories,
   System.String^ wildCardPattern
) 

Parameters

localDirectory
The local directory to upload
ftpDirectory
The FTP directory to upload to
subDirectories
If true, upload sub directories
wildCardPattern
The file pattern
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
 
//Uploads all directories, subdirectories and files in the selected Directory asynchronously to the FTP server 
System.Console.WriteLine("We are uploading the Download folder to the TestDir folder .This is a non-blocking call");
 
// All these calls do the same thing
ftp.CreateDirectory("TestDir");
ftp.UploadDirectoryAsync("C:\\Download", "TestDir");
/* ftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, "*.*");
 ftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, new Regex(".+"));
 ftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, DateTime.MinValue, DateTime.MaxValue);
 ftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, 0, Int64.MaxValue);
*/
  
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
 
'Uploads all directories, subdirectories and files in the selected Directory asynchronously to the FTP server 
System.Console.WriteLine("We are uploading the Download folder to the TestDir folder .This is a non-blocking call")
 
' All these calls do the same thing
ftp.CreateDirectory("TestDir")
ftp.UploadDirectoryAsync("C:\\Download", "TestDir")
' ftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, "*.*");
 'ftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, new Regex(".+"));
 'ftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, DateTime.MinValue, DateTime.MaxValue);
 'ftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, 0, Int64.MaxValue);
'
 
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