|
Copyright © 2006 - 2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function RequestUploadToFTP (
strHost as String,
strUsername as String,
strPassword as String,
nPort as Int32,
bPassiveMode as Boolean,
strDirectory as String,
strFilename as String,
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes RequestUploadToFTP (
string strHost,
string strUsername,
string strPassword,
Int32 nPort,
bool bPassiveMode,
string strDirectory,
string strFilename
);
|
|
[C++]
public: enumErrorCodes RequestUploadToFTP (
string strHost,
string strUsername,
string strPassword,
Int32 nPort,
bool bPassiveMode,
string strDirectory,
string strFilename
);
|
|
Parameter
|
Description
| |||||||||
|
|
| |||||||||
|
strHost
|
String representing the FTP host address, without the protocol prefix (for example "ftp.multimediasoft.com" instead of "ftp://ftp.multimediasoft.com")
| |||||||||
|
strUsername
|
String representing the FTP account username
| |||||||||
|
strPassword
|
String representing the FTP account password
| |||||||||
|
nPort
|
FTP port number (for example 21)
| |||||||||
|
bPassiveMode
|
Boolean value for FTP "passive mode" flag.
Supported values are the following:
| |||||||||
|
strDirectory
|
String representing the destination directory on FTP server
| |||||||||
|
strFilename
|
String representing the destination filename
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred. Check the LastError property value in order to see the last error.
|
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|