NET FTP Library
SynchronizeDownload(String,String,Boolean) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > SynchronizeDownload Method : SynchronizeDownload(String,String,Boolean) Method
The local path to put the directory
The FTP directory to download
If true, download subdirectories
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 Function SynchronizeDownload( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String, _
   ByVal subDirectories As System.Boolean _
) As System.Collections.Generic.List(Of TransferInfo)
'Usage
 
Dim instance As FTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim subDirectories As System.Boolean
Dim value As System.Collections.Generic.List(Of TransferInfo)
 
value = instance.SynchronizeDownload(localDirectory, ftpDirectory, subDirectories)
public System.Collections.Generic.List<TransferInfo> SynchronizeDownload( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.bool subDirectories
)
public function SynchronizeDownload( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    subDirectories: System.Boolean
): System.Collections.Generic.List; 
public function SynchronizeDownload( 
   localDirectory : System.String,
   ftpDirectory : System.String,
   subDirectories : System.boolean
) : System.Collections.Generic.List;
public: System.Collections.Generic.List<TransferInfo*>* SynchronizeDownload( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.bool subDirectories
) 
public:
System.Collections.Generic.List<TransferInfo^>^ SynchronizeDownload( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.bool subDirectories
) 

Parameters

localDirectory
The local path to put the directory
ftpDirectory
The FTP directory to download
subDirectories
If true, download subdirectories
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
 
//Only synchronize files in the specified directory, do not do sub directories
ftp.SynchronizeDownload("TestDir", "C:\\Download", false);
 
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
 
'Only synchronize files in the specified directory, do not do sub directories
ftp.SynchronizeDownload("TestDir", "C:\\Download", False)
 
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