Transfer files that do not exist locally 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.
FTP files and directories will be deleted if they do not exist in the corresponding local directory.
Syntax
public void SynchronizeUploadWithDeleteAsync(
System.string ,
System.string
)
public procedure SynchronizeUploadWithDeleteAsync(
: System.String;
: System.String
);
public function SynchronizeUploadWithDeleteAsync(
: System.String,
: System.String
);
public: void SynchronizeUploadWithDeleteAsync(
System.string* ,
System.string*
)
public:
void SynchronizeUploadWithDeleteAsync(
System.String^ ,
System.String^
)
'Declaration
Public Overloads Sub SynchronizeUploadWithDeleteAsync( _
ByVal As System.String, _
ByVal As System.String _
)
'Usage
Dim instance As SFTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
instance.SynchronizeUploadWithDeleteAsync(localDirectory, ftpDirectory)
Parameters
- localDirectory
- The local directory to upload
- ftpDirectory
- The FTP directory to upload to
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");
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")
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