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
public void SynchronizeUploadAsync(
System.string ,
System.string ,
System.bool ,
System.object
)
public procedure SynchronizeUploadAsync(
: System.String;
: System.String;
: System.Boolean;
: System.TObject
);
public function SynchronizeUploadAsync(
: System.String,
: System.String,
: System.boolean,
: System.Object
);
public: void SynchronizeUploadAsync(
System.string* ,
System.string* ,
System.bool ,
System.Object*
)
public:
void SynchronizeUploadAsync(
System.String^ ,
System.String^ ,
System.bool ,
System.Object^
)
'Declaration
Public Overloads Sub SynchronizeUploadAsync( _
ByVal As System.String, _
ByVal As System.String, _
ByVal As System.Boolean, _
ByVal 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)
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