Uploads the image of a specified index in buffer to the FTP server.

Namespace: Dynamsoft.DotNet.TWAIN
Assembly: DynamicDotNetTWAIN (in DynamicDotNetTWAIN.dll) Version: 3.0.0.0 (3.0.0.0)

Syntax

C#
public bool FTPUpload(
	string strFTPServer,
	short sImageIndex,
	string strFTPRemoteFile
)
Visual Basic
Public Function FTPUpload ( _
	strFTPServer As String, _
	sImageIndex As Short, _
	strFTPRemoteFile As String _
) As Boolean

Parameters

strFTPServer
Type: System..::..String
The name of the FTP server.
sImageIndex
Type: System..::..Int16
Specifies the index of image in buffer. The index is 0-based.
strFTPRemoteFile
Type: System..::..String
The name of the file to be created on the FTP server. It should be a relative path on the FTP server.

Return Value

True indicates success. False indicates failure.

Remarks

Dynamic .NET TWAIN processes the image format according to the extension of the FTPRemoteFile. Dynamic .NET TWAIN supports the following types of image files: Bitmap *.bmp, *.dib JPEG *.JPG, *.JPEG, .*.JPE, *.JFIF TIFF *.TIF, *.TIFF PNG *.PNG FTPRemoteFile parameter should include the FTP directory of the file. Write permission of the specified directory is needed for uploading.

Exceptions

ExceptionCondition
Dynamsoft.DotNet.TWAIN..::..TwainException When an error occurs and IfThrowException property is true, an exception will be thrown. When IfThrowException property is false, please check ErrorCode and ErrorString.

See Also