NET FTP Library
SynchronizeUploadWithDeleteAsync(String,String,Object) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > SynchronizeUploadWithDeleteAsync Method : SynchronizeUploadWithDeleteAsync(String,String,Object) Method
The local directory to upload
The FTP directory to upload to
Your custom object to be returned with Started, Progress, and Completed Events
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 FTP 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
'Declaration
 
Public Overloads Sub SynchronizeUploadWithDeleteAsync( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String, _
   ByVal customObject As System.Object _
) 
'Usage
 
Dim instance As FTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim customObject As System.Object
 
instance.SynchronizeUploadWithDeleteAsync(localDirectory, ftpDirectory, customObject)
public void SynchronizeUploadWithDeleteAsync( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.object customObject
)
public procedure SynchronizeUploadWithDeleteAsync( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    customObject: System.TObject
); 
public function SynchronizeUploadWithDeleteAsync( 
   localDirectory : System.String,
   ftpDirectory : System.String,
   customObject : System.Object
);
public: void SynchronizeUploadWithDeleteAsync( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.Object* customObject
) 
public:
void SynchronizeUploadWithDeleteAsync( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.Object^ customObject
) 

Parameters

localDirectory
The local directory to upload
ftpDirectory
The FTP directory to upload to
customObject
Your custom object to be returned with Started, Progress, and Completed Events
Example
FTP ftp = new FTP(); //Trial Mode            
//FTP ftp = new FTP("place user name here", "place license key here");
 
// set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu"; // a hungarian university. change this to your ftp server
ftp.UserName = "anonymous"; // replace with your user name
ftp.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
ftp.SynchronizeUploadWithDeleteAsync("C:\\Download", "TestDir");
System.Console.WriteLine("Transferring unsynchronized files to the TestDir FTP folder");
 
while (ftp.IsBusy == true)
{
    System.Threading.Thread.Sleep(100);
}
 
System.Console.WriteLine("{0} files have been Transferred", ftp.FileCount);
Dim ftp As FTP = New FTP() 'Trial Mode
'FTP ftp = new FTP("place user name here", "place license key here");
 
' set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu" ' a hungarian university. change this to your ftp server
ftp.UserName = "anonymous" ' replace with your user name
ftp.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
ftp.SynchronizeUploadWithDeleteAsync("C:\\Download", "TestDir")
System.Console.WriteLine("Transferring unsynchronized files to the TestDir FTP folder")
 
Do While ftp.IsBusy = True
    System.Threading.Thread.Sleep(100)
Loop
 
System.Console.WriteLine("{0} files have been Transferred", ftp.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

FTP Class
FTP Members
Overload List