NET FTP Library
ResumeDownloadFileAsync(String,String) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > ResumeDownloadFileAsync Method : ResumeDownloadFileAsync(String,String) Method
The local file path to download to
The FTP path to download from
Resume downloading a file asynchronously. It automatically starts at where it left off.
Syntax
'Declaration
 
Public Overloads Sub ResumeDownloadFileAsync( _
   ByVal localFilePath As System.String, _
   ByVal ftpFileName As System.String _
) 
'Usage
 
Dim instance As FTP
Dim localFilePath As System.String
Dim ftpFileName As System.String
 
instance.ResumeDownloadFileAsync(localFilePath, ftpFileName)
public void ResumeDownloadFileAsync( 
   System.string localFilePath,
   System.string ftpFileName
)
public procedure ResumeDownloadFileAsync( 
    localFilePath: System.String;
    ftpFileName: System.String
); 
public function ResumeDownloadFileAsync( 
   localFilePath : System.String,
   ftpFileName : System.String
);
public: void ResumeDownloadFileAsync( 
   System.string* localFilePath,
   System.string* ftpFileName
) 
public:
void ResumeDownloadFileAsync( 
   System.String^ localFilePath,
   System.String^ ftpFileName
) 

Parameters

localFilePath
The local file path to download to
ftpFileName
The FTP path to download from
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
 
System.Console.WriteLine("We are downloading the a.txt file.This is a blocking call");
 
ftp.ResumeDownloadFileAsync("a.txt", "a.txt");
 
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
 
System.Console.WriteLine("We are downloading the a.txt file.This is a blocking call")
 
ftp.ResumeDownloadFileAsync("a.txt", "a.txt")
 
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