NET FTP Library
EstimatedTimeRemaining Property
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class : EstimatedTimeRemaining Property
During a file/directory transfer operation, this is the time that remains. This is calculated by the average KB/Second and the remaining bytes to transfer.
Syntax
'Declaration
 
Public Overridable ReadOnly Property EstimatedTimeRemaining As System.TimeSpan
'Usage
 
Dim instance As FTP
Dim value As System.TimeSpan
 
value = instance.EstimatedTimeRemaining
public virtual System.TimeSpan EstimatedTimeRemaining {get;}
public read-only property EstimatedTimeRemaining: System.TimeSpan; virtual; 
public function get EstimatedTimeRemaining : System.TimeSpan
public: __property virtual System.TimeSpan get_EstimatedTimeRemaining();
public:
virtual property System.TimeSpan EstimatedTimeRemaining {
   System.TimeSpan get();
}
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
 
ftp.UploadDirectoryAsync("C:\\Download", "TestDir");
 
//we wait 1 second for data to be Transferred 
System.Threading.Thread.Sleep(1000);
 
//During a file/directory transfer operation, this is the time that remains 
//This is calculated by the average KB/Second and the remaining bytes to transfer 
System.Console.WriteLine("Estimated Time Remaining  is {0}", ftp.EstimatedTimeRemaining);
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
 
ftp.UploadDirectoryAsync("C:\\Download", "TestDir")
 
'we wait 1 second for data to be Transferred 
System.Threading.Thread.Sleep(1000)
 
'During a file/directory transfer operation, this is the time that remains 
'This is calculated by the average KB/Second and the remaining bytes to transfer 
System.Console.WriteLine("Estimated Time Remaining  is {0}", ftp.EstimatedTimeRemaining)
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