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






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class > SynchronizeUpload Method : SynchronizeUpload(String,String,Boolean) Method
The local directory to upload
The FTP directory to upload to
If true, upload sub directories
Transfer files that do not exist remotely synchronously OR Files that have a different byte count OR Files that have a modification date difference in seconds greater than 60. The hour difference between the local machine and the SSH server is taken into account when CalcHourDifference has been called. By default all files and sub directories are attempted to be synchronized.
Syntax
'Declaration
 
Public Overloads Function SynchronizeUpload( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String, _
   ByVal subDirectories As System.Boolean _
) 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 value As System.Collections.Generic.List(Of TransferInfo)
 
value = instance.SynchronizeUpload(localDirectory, ftpDirectory, subDirectories)
public System.Collections.Generic.List<TransferInfo> SynchronizeUpload( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.bool subDirectories
)
public function SynchronizeUpload( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    subDirectories: System.Boolean
): System.Collections.Generic.List; 
public function SynchronizeUpload( 
   localDirectory : System.String,
   ftpDirectory : System.String,
   subDirectories : System.boolean
) : System.Collections.Generic.List;
public: System.Collections.Generic.List<TransferInfo*>* SynchronizeUpload( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.bool subDirectories
) 
public:
System.Collections.Generic.List<TransferInfo^>^ SynchronizeUpload( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.bool subDirectories
) 

Parameters

localDirectory
The local directory to upload
ftpDirectory
The FTP directory to upload to
subDirectories
If true, upload sub directories
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
 
//Transfer files that do not exist locally OR Files that have a different byte count OR Files that have a modification date difference in seconds greater than 60 *
sftp.SynchronizeUpload("C:\\Download", "TestDir");
System.Console.WriteLine("transferring unsynchronized files to the TestDir FTP folder");
 
System.Console.WriteLine("{0} files have been Transferred", sftp.FileCount);
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
 
'Transfer files that do not exist locally OR Files that have a different byte count OR Files that have a modification date difference in seconds greater than 60 *
sftp.SynchronizeUpload("C:\\Download", "TestDir")
System.Console.WriteLine("transferring unsynchronized files to the TestDir FTP folder")
 
System.Console.WriteLine("{0} files have been Transferred", sftp.FileCount)
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