This method uploads a file to an FTP server specifying the remote URI and the local filename.

[Visual Basic] Public Function FtpUploadFile(ByVal remoteAddress As System.Uri, ByVal localFileName As String) As Boolean
[C#] public bool FtpUploadFile(System.Uri remoteAddress, string localFileName);

Parameters

remoteAddress
   The URI where the file will be uploaded

localFileName
   The filename and path of the local file to be uploaded

Return Value

Returns True if successful. Returns False if unsuccessful.

Explanation

The FtpUploadFile method uploads a file to an FTP server specifying the remote URI and the local filename.

This method is effective for the FTP protocol.

Example

[Visual Basic.NET]
Dim Ret As Boolean
'Username and password
ImageKit.File.FtpCredentials = New NetworkCredential("user", "password")
'Enables passive mode connectivity
ImageKit.File.FtpPassive = True
'Uploads the file
Ret = ImageKit.File.FtpUploadFile(New Uri("ftp://www.newtone.co.jp/test/test.jpg"), "c:\test\test.jpg")

[Visual C#.NET]
bool Ret;
//Username and password
ImageKit.File.FtpCredentials = new NetworkCredential("user", "password");
//Enables passive mode connectivity
ImageKit.File.FtpPassive = true;
//Uploads the file
Ret = ImageKit.File.FtpUploadFile(new Uri("ftp://www.newtone.co.jp/test/test.jpg"), @"c:\test\test.jpg");

See Also

ImageKit.File Members | Newtone.ImageKit.Wpf.ImageKit

The ImageKit WPF is created by Newtone Corporation