NET SFTP Library
ResumeUploadFile Method
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class : ResumeUploadFile 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
Resume an upload for a file synchronously using sftp. It automatically resumes where it left off.
Syntax
'Declaration
 
Public Sub ResumeUploadFile( _
   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.ResumeUploadFile(localFilePath, ftpFileName)
public void ResumeUploadFile( 
   System.string localFilePath,
   System.string ftpFileName
)
public procedure ResumeUploadFile( 
    localFilePath: System.String;
    ftpFileName: System.String
); 
public function ResumeUploadFile( 
   localFilePath : System.String,
   ftpFileName : System.String
);
public: void ResumeUploadFile( 
   System.string* localFilePath,
   System.string* ftpFileName
) 
public:
void ResumeUploadFile( 
   System.String^ localFilePath,
   System.String^ ftpFileName
) 

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
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
             
            sftp.ResumeUploadFile("c:\\uploadfile1.txt", "uploadfile1.txt");
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
             
            sftp.ResumeUploadFile("c:\uploadfile1.txt", "uploadfile1.txt")
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