NET SFTP Library
UploadDirectory(String,String,Boolean,String) Method
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class > UploadDirectory Method : UploadDirectory(String,String,Boolean,String) Method
The local path to put the directory
The FTP directory to download
Upload files in sub directories
Standard wildcard pattern
Upload files matching the wildcard pattern using FTP Uses standard wild card pattern such as *.xls
Syntax
'Declaration
 
Public Overloads Function UploadDirectory( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String, _
   ByVal subDirectories As System.Boolean, _
   ByVal wildCardPattern As System.String _
) As System.Collections.Generic.List(Of TransferInfo)
'Usage
 
Dim instance As SFTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim subDirectories As System.Boolean
Dim wildCardPattern As System.String
Dim value As System.Collections.Generic.List(Of TransferInfo)
 
value = instance.UploadDirectory(localDirectory, ftpDirectory, subDirectories, wildCardPattern)
public System.Collections.Generic.List<TransferInfo> UploadDirectory( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.bool subDirectories,
   System.string wildCardPattern
)
public function UploadDirectory( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    subDirectories: System.Boolean;
    wildCardPattern: System.String
): System.Collections.Generic.List; 
public function UploadDirectory( 
   localDirectory : System.String,
   ftpDirectory : System.String,
   subDirectories : System.boolean,
   wildCardPattern : System.String
) : System.Collections.Generic.List;
public: System.Collections.Generic.List<TransferInfo*>* UploadDirectory( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.bool subDirectories,
   System.string* wildCardPattern
) 
public:
System.Collections.Generic.List<TransferInfo^>^ UploadDirectory( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.bool subDirectories,
   System.String^ wildCardPattern
) 

Parameters

localDirectory
The local path to put the directory
ftpDirectory
The FTP directory to download
subDirectories
Upload files in sub directories
wildCardPattern
Standard wildcard pattern
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.UploadDirectory("C:\\Download", "TestDir");
/* sftp.UploadDirectory( "C:\\Download", "TestDir" , true, "*.*");
 sftp.UploadDirectory( "C:\\Download", "TestDir" , true, new Regex(".+"));
 sftp.UploadDirectory( "C:\\Download", "TestDir" , true, DateTime.MinValue, DateTime.MaxValue);
 sftp.UploadDirectory( "C:\\Download", "TestDir" , true, 0, Int64.MaxValue);
*/
  
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.UploadDirectory("C:\\Download", "TestDir")
' sftp.UploadDirectory( "C:\\Download", "TestDir" , true, "*.*");
 'sftp.UploadDirectory( "C:\\Download", "TestDir" , true, new Regex(".+"));
 'sftp.UploadDirectory( "C:\\Download", "TestDir" , true, DateTime.MinValue, DateTime.MaxValue);
 'sftp.UploadDirectory( "C:\\Download", "TestDir" , true, 0, Int64.MaxValue);
'
 
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