NET FTP Library
UploadStream(Stream,String,Int64) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > UploadStream Method : UploadStream(Stream,String,Int64) Method
The local file stream
The FTP file path
The byte offset to start at
Upload a file stream to the FTP server using the specified byte offset.
Syntax
'Declaration
 
Public Overloads Sub UploadStream( _
   ByVal localStream As System.IO.Stream, _
   ByVal ftpFileName As System.String, _
   ByVal restart As System.Long _
) 
'Usage
 
Dim instance As FTP
Dim localStream As System.IO.Stream
Dim ftpFileName As System.String
Dim restart As System.Long
 
instance.UploadStream(localStream, ftpFileName, restart)
public void UploadStream( 
   System.IO.Stream localStream,
   System.string ftpFileName,
   System.long restart
)
public procedure UploadStream( 
    localStream: System.IO.Stream;
    ftpFileName: System.String;
    restart: System.Int64
); 
public function UploadStream( 
   localStream : System.IO.Stream,
   ftpFileName : System.String,
   restart : System.long
);
public: void UploadStream( 
   System.IO.Stream* localStream,
   System.string* ftpFileName,
   System.long restart
) 
public:
void UploadStream( 
   System.IO.Stream^ localStream,
   System.String^ ftpFileName,
   System.int64 restart
) 

Parameters

localStream
The local file stream
ftpFileName
The FTP file path
restart
The byte offset to start at
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
 
Stream myStream = File.OpenRead("c:\\uploadfile1.txt");
ftp.UploadStream(myStream, "uploadfile1.txt", 2500);
myStream.Close();
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
 
Dim myStream As Stream = File.OpenRead("c:\uploadfile1.txt")
ftp.UploadStream(myStream, "uploadfile1.txt", 2500)
myStream.Close()
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