NET SFTP Library
SynchronizeUploadWithDeleteAsync(String,String,List<String>) Method
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class > SynchronizeUploadWithDeleteAsync Method : SynchronizeUploadWithDeleteAsync(String,String,List<String>) Method
The path for the local directory
The ftp directory
files or directories or wildcard pattern to exclude
Synchronize Upload a Directory With Delete and Exclude a List of files, directories, or wildcards. Useful for synchronizing to different environments, DEV, QA, PROD, where server specific settings such as the web.config are different.
Syntax
'Declaration
 
Public Overloads Sub SynchronizeUploadWithDeleteAsync( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String, _
   ByVal filesAndDirectoriesToExclude As System.Collections.Generic.List(Of String) _
) 
'Usage
 
Dim instance As SFTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim filesAndDirectoriesToExclude As System.Collections.Generic.List(Of String)
 
instance.SynchronizeUploadWithDeleteAsync(localDirectory, ftpDirectory, filesAndDirectoriesToExclude)
public void SynchronizeUploadWithDeleteAsync( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.Collections.Generic.List<string> filesAndDirectoriesToExclude
)
public procedure SynchronizeUploadWithDeleteAsync( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    filesAndDirectoriesToExclude: System.Collections.Generic.List
); 
public function SynchronizeUploadWithDeleteAsync( 
   localDirectory : System.String,
   ftpDirectory : System.String,
   filesAndDirectoriesToExclude : System.Collections.Generic.List
);
public: void SynchronizeUploadWithDeleteAsync( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.Collections.Generic.List<string*>* filesAndDirectoriesToExclude
) 
public:
void SynchronizeUploadWithDeleteAsync( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.Collections.Generic.List<String^>^ filesAndDirectoriesToExclude
) 

Parameters

localDirectory
The path for the local directory
ftpDirectory
The ftp directory
filesAndDirectoriesToExclude
files or directories or wildcard pattern to exclude
Remarks
bin (Directory or file named bin anywhere in the structure) somefile.txt (a file) *.bak (Exclude all files with *.bak)
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.SynchronizeUploadWithDeleteAsync("C:\\Download", "TestDir", new List<string> { "web.config"});
System.Console.WriteLine("Transferring unsynchronized files to the TestDir FTP folder");
 
while (sftp.IsBusy == true)
{
    System.Threading.Thread.Sleep(100);
}
 
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.SynchronizeUploadWithDeleteAsync("C:\\Download", "TestDir", new List<string> { "web.config"})
System.Console.WriteLine("Transferring unsynchronized files to the TestDir FTP folder")
 
Do While sftp.IsBusy = True
    System.Threading.Thread.Sleep(100)
Loop
 
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