NET SFTP Library
ResumeDownloadFile Method
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class : ResumeDownloadFile Method
The local file path to download to
The FTP file to download
Automatically resume downloading a file where it was left off.
Syntax
'Declaration
 
Public Sub ResumeDownloadFile( _
   ByVal localFilePath As System.String, _
   ByVal ftpFileName As System.String _
) 
'Usage
 
Dim instance As SFTP
Dim localFilePath As System.String
Dim ftpFileName As System.String
 
instance.ResumeDownloadFile(localFilePath, ftpFileName)
public void ResumeDownloadFile( 
   System.string localFilePath,
   System.string ftpFileName
)
public procedure ResumeDownloadFile( 
    localFilePath: System.String;
    ftpFileName: System.String
); 
public function ResumeDownloadFile( 
   localFilePath : System.String,
   ftpFileName : System.String
);
public: void ResumeDownloadFile( 
   System.string* localFilePath,
   System.string* ftpFileName
) 
public:
void ResumeDownloadFile( 
   System.String^ localFilePath,
   System.String^ ftpFileName
) 

Parameters

localFilePath
The local file path to download to
ftpFileName
The FTP file to download
Example
SFTP sftp = new SFTP(); //Trial Mode            
            //SFTP sftp = new SFTP("place user name here", "place license key here");
             
            // set the name of the SSH server( its URL )
            sftp.HostAddress = "some.sftp.server.com"; // replace with your SFTP server
            sftp.UserName  = "anonymous"; // replace with your user name
            sftp.Password = "user@mail.com"; // replace with your password
             
            System.Console.WriteLine("We are downloading the a.txt file.This is a blocking call");
             
            sftp.ResumeDownloadFile("a.txt", "a.txt");
             
            System.Console.WriteLine("{0} files have been Transferred", sftp.FileCount);
Dim sftp As SFTP = New SFTP() 'Trial Mode
            'Dim sftp As SFTP = New SFTP("place user name here", "place license key here");
             
            ' set the name of the SSH server( its URL )
            sftp.HostAddress = "some.sftp.server.com" ' replace with your SFTP server
            sftp.UserName  = "anonymous" ' replace with your user name
            sftp.Password = "user@mail.com" ' replace with your password
             
            System.Console.WriteLine("We are downloading the a.txt file.This is a blocking call")
             
            sftp.ResumeDownloadFile("a.txt", "a.txt")
             
            System.Console.WriteLine("{0} files have been Transferred", sftp.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

SFTP Class
SFTP Members