NET SFTP Library
UploadDirectoryAsync(String,String,Boolean,DateTime,DateTime,Object) Method
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class > UploadDirectoryAsync Method : UploadDirectoryAsync(String,String,Boolean,DateTime,DateTime,Object) Method
The local path to upload
The FTP path to upload to
If true, upload subdirectories
The earliest file to upload
The latest file to upload
Your custom object to be returned with Started, Progress, and Completed Events
Upload files that are modified between two dates.
Syntax
'Declaration
 
Public Overloads Sub UploadDirectoryAsync( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String, _
   ByVal subDirectories As System.Boolean, _
   ByVal startDate As System.Date, _
   ByVal endDate As System.Date, _
   ByVal customObject As System.Object _
) 
'Usage
 
Dim instance As SFTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim subDirectories As System.Boolean
Dim startDate As System.Date
Dim endDate As System.Date
Dim customObject As System.Object
 
instance.UploadDirectoryAsync(localDirectory, ftpDirectory, subDirectories, startDate, endDate, customObject)
public void UploadDirectoryAsync( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.bool subDirectories,
   System.DateTime startDate,
   System.DateTime endDate,
   System.object customObject
)
public procedure UploadDirectoryAsync( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    subDirectories: System.Boolean;
    startDate: System.DateTime;
    endDate: System.DateTime;
    customObject: System.TObject
); 
public function UploadDirectoryAsync( 
   localDirectory : System.String,
   ftpDirectory : System.String,
   subDirectories : System.boolean,
   startDate : System.DateTime,
   endDate : System.DateTime,
   customObject : System.Object
);
public: void UploadDirectoryAsync( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.bool subDirectories,
   System.DateTime startDate,
   System.DateTime endDate,
   System.Object* customObject
) 
public:
void UploadDirectoryAsync( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.bool subDirectories,
   System.DateTime startDate,
   System.DateTime endDate,
   System.Object^ customObject
) 

Parameters

localDirectory
The local path to upload
ftpDirectory
The FTP path to upload to
subDirectories
If true, upload subdirectories
startDate
The earliest file to upload
endDate
The latest file to upload
customObject
Your custom object to be returned with Started, Progress, and Completed Events
Example
SFTP sftp = new SFTP(); //Trial Mode            
//SFTP sftp = new SFTP("place user name here", "place license key here");
 
// Set the name of the SSH server( its URL )
sftp.HostAddress = "some.sftp.server.com"; // replace with your SFTP server
sftp.UserName  = "anonymous"; // replace With your user name
sftp.Password = "user@mail.com"; // replace With your password
 
//Uploads all directories, subdirectories And files In the selected Directory asynchronously To the SSH 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
sftp.CreateDirectory("TestDir");
sftp.UploadDirectoryAsync("C:\\Download", "TestDir");
/* sftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , True, "*.*");
 sftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , True, New Regex(".+"));
 sftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , True, DateTime.MinValue, DateTime.MaxValue);
 sftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , True, 0, Int64.MaxValue);
*/
  
While (sftp.IsBusy == True)
{
    System.Threading.Thread.Sleep(100);
}
 
System.Console.WriteLine("TestDir has now {0} KB", sftp.GetDirectorySize("TestDir") / 1024);
Dim sftp As SFTP = New SFTP() 'Trial Mode
'Dim sftp As SFTP = New SFTP("place user name here", "place license key here");
 
' set the name of the SSH server( its URL )
sftp.HostAddress = "some.sftp.server.com" ' replace with your SFTP server
sftp.UserName  = "anonymous" ' replace with your user name
sftp.Password = "user@mail.com" ' replace with your password
 
'Uploads all directories, subdirectories and files in the selected Directory asynchronously to the SSH 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
sftp.CreateDirectory("TestDir")
sftp.UploadDirectoryAsync("C:\\Download", "TestDir")
' sftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, "*.*");
 'sftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, new Regex(".+"));
 'sftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, DateTime.MinValue, DateTime.MaxValue);
 'sftp.UploadDirectoryAsync( "C:\\Download", "TestDir" , true, 0, Int64.MaxValue);
'
 
Do While sftp.IsBusy = True
    System.Threading.Thread.Sleep(100)
Loop
 
System.Console.WriteLine("TestDir has now {0} KB", sftp.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

SFTP Class
SFTP Members
Overload List