NET SFTP Library
DownloadFile(String,String,Int64) Method
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class > DownloadFile Method : DownloadFile(String,String,Int64) Method
The full path of the file, including the file name
The full path of the FTP file, including the ftp directory and file name
The byte offset to start downloading
Download a file name synchronously using FTP from the specified byte offset
Syntax
'Declaration
 
Public Overloads Sub DownloadFile( _
   ByVal localFilePath As System.String, _
   ByVal ftpFileName As System.String, _
   ByVal restart As System.Long _
) 
'Usage
 
Dim instance As SFTP
Dim localFilePath As System.String
Dim ftpFileName As System.String
Dim restart As System.Long
 
instance.DownloadFile(localFilePath, ftpFileName, restart)
public void DownloadFile( 
   System.string localFilePath,
   System.string ftpFileName,
   System.long restart
)
public procedure DownloadFile( 
    localFilePath: System.String;
    ftpFileName: System.String;
    restart: System.Int64
); 
public function DownloadFile( 
   localFilePath : System.String,
   ftpFileName : System.String,
   restart : System.long
);
public: void DownloadFile( 
   System.string* localFilePath,
   System.string* ftpFileName,
   System.long restart
) 
public:
void DownloadFile( 
   System.String^ localFilePath,
   System.String^ ftpFileName,
   System.int64 restart
) 

Parameters

localFilePath
The full path of the file, including the file name
ftpFileName
The full path of the FTP file, including the ftp directory and file name
restart
The byte offset to start downloading
Example
SFTP sftp = new SFTP(); //Trial Mode            
//SFTP sftp = new SFTP("place user name here", "place license key here");
 
// set the name of the SFTP 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.DownloadFile("a.txt", "a.txt");
 
System.Console.WriteLine("{0} files have been Transferred", sftp.FileCount);
Dim sftp As SFTP = New SFTP() 'Trial Mode
'Dim sftp = New SFTP("place user name here", "place license key here")
 
' set the name of the SFTP 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.DownloadFile("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
Overload List