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 String, ByVal localFileName As
String) As Boolean
[C#] public bool FtpUploadFile(string
remoteAddress, string localFileName);
Parameters
remoteAddress
The URI where the file will be uploaded
localFileName
Local file name
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("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("ftp://www.newtone.co.jp/test/test.jpg", @"c:\test\test.jpg");