ExFTPConnectionUploadFile Method (String, String, Boolean) |
Note: This API is now obsolete.
Upload a local file to the FTP server in the current working directory. Allows appending
if current file exists.
Namespace:
EnterpriseDT.Net.Ftp
Assembly:
edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 12.3.0.0
Syntax[ObsoleteAttribute("Use UploadFile(string, string, WriteMode)")]
public override void UploadFile(
string localPath,
string remoteFile,
bool append
)
<ObsoleteAttribute("Use UploadFile(string, string, WriteMode)")>
Public Overrides Sub UploadFile (
localPath As String,
remoteFile As String,
append As Boolean
)
public:
[ObsoleteAttribute(L"Use UploadFile(string, string, WriteMode)")]
virtual void UploadFile(
String^ localPath,
String^ remoteFile,
bool append
) override
[<ObsoleteAttribute("Use UploadFile(string, string, WriteMode)")>]
abstract UploadFile :
localPath : string *
remoteFile : string *
append : bool -> unit
[<ObsoleteAttribute("Use UploadFile(string, string, WriteMode)")>]
override UploadFile :
localPath : string *
remoteFile : string *
append : bool -> unit
Parameters
- localPath
- Type: SystemString
Path of the local file. - remoteFile
- Type: SystemString
Name of remote file in current working directory. - append
- Type: SystemBoolean
true if appending, false otherwise.
See Also