NET FTP Library
ResumeUploadFile Method
Example 






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

FTP Class
FTP Members