NET FTP Library
CalcHourDifference Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class : CalcHourDifference Method
Calculate the difference in hours between the local pc and the remote ftp server. The current logged in user must have write access to the current ftp directory.
Syntax
'Declaration
 
Public Sub CalcHourDifference() 
'Usage
 
Dim instance As FTP
 
instance.CalcHourDifference()
public void CalcHourDifference()
public procedure CalcHourDifference(); 
public function CalcHourDifference();
public: void CalcHourDifference(); 
public:
void CalcHourDifference(); 
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
 
//Calculate the hour difference between this PC and the FTP Server
ftp.CalcHourDifference();
System.Console.WriteLine("The difference in hours is {0}", ftp.HourDifference);
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
 
'Calculate the hour difference between this PC and the FTP Server
ftp.CalcHourDifference()
System.Console.WriteLine("The difference in hours is {0}", ftp.HourDifference)
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