NET SFTP Library
UploadFile(String,String) Method
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class > UploadFile Method : UploadFile(String,String) 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
Upload a file name synchronously using FTP
Syntax
'Declaration
 
Public Overloads Sub UploadFile( _
   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.UploadFile(localFilePath, ftpFileName)
public void UploadFile( 
   System.string localFilePath,
   System.string ftpFileName
)
public procedure UploadFile( 
    localFilePath: System.String;
    ftpFileName: System.String
); 
public function UploadFile( 
   localFilePath : System.String,
   ftpFileName : System.String
);
public: void UploadFile( 
   System.string* localFilePath,
   System.string* ftpFileName
) 
public:
void UploadFile( 
   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  = "anonymus"; // replace with your user name
            sftp.Password = "user@mail.com"; // replace with your password
             
            System.Console.WriteLine("We are uploading the a.txt file the Current FTP folder .This is a blocking call");
             
            sftp.UploadFile("C://Download/a.txt", "a.txt");
             
            System.Console.WriteLine("a.txt {0}", sftp.FileExists("a.txt") == true ? "is on the ftp server" : "does not exist on the ftp server");
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  = "anonymus" ' replace with your user name
            sftp.Password = "user@mail.com" ' replace with your password
             
            System.Console.WriteLine("We are uploading the a.txt file the Current FTP folder .This is a blocking call")
             
            sftp.UploadFile("C://Download/a.txt", "a.txt")
             
            If sftp.FileExists("a.txt") = True Then
                System.Console.WriteLine("a.txt {0}","is on the ftp server")
            Else
                System.Console.WriteLine("a.txt {0}","does not exist on the ftp server")
            End If
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