NET FTP Library
SynchronizeUploadAsync(String,String,Boolean,Object) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > SynchronizeUploadAsync Method : SynchronizeUploadAsync(String,String,Boolean,Object) Method
The local directory to upload
The FTP directory to upload to
If true, upload subdirectories
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.
Syntax
'Declaration
 
Public Overloads Sub SynchronizeUploadAsync( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String, _
   ByVal subDirectories As System.Boolean, _
   ByVal customObject As System.Object _
) 
'Usage
 
Dim instance As FTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim subDirectories As System.Boolean
Dim customObject As System.Object
 
instance.SynchronizeUploadAsync(localDirectory, ftpDirectory, subDirectories, customObject)
public void SynchronizeUploadAsync( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.bool subDirectories,
   System.object customObject
)
public procedure SynchronizeUploadAsync( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    subDirectories: System.Boolean;
    customObject: System.TObject
); 
public function SynchronizeUploadAsync( 
   localDirectory : System.String,
   ftpDirectory : System.String,
   subDirectories : System.boolean,
   customObject : System.Object
);
public: void SynchronizeUploadAsync( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.bool subDirectories,
   System.Object* customObject
) 
public:
void SynchronizeUploadAsync( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.bool subDirectories,
   System.Object^ customObject
) 

Parameters

localDirectory
The local directory to upload
ftpDirectory
The FTP directory to upload to
subDirectories
If true, upload subdirectories
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.SynchronizeUploadAsync("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.SynchronizeUploadAsync("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